20211202 代码整理 材料系统webserive重新引用

This commit is contained in:
2021-12-02 14:50:25 +08:00
parent ce8adb5c7b
commit 27591ca3e8
11 changed files with 2275 additions and 104 deletions
@@ -22,6 +22,13 @@ namespace BLL.MCSService {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getVendorUserNameAndPwd", ReplyAction="*")]
System.Threading.Tasks.Task<string> getVendorUserNameAndPwdAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPojectInfo", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
string getPojectInfo();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPojectInfo", ReplyAction="*")]
System.Threading.Tasks.Task<string> getPojectInfoAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPoDetails", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
string getPoDetails(long projectID);
@@ -36,13 +43,6 @@ namespace BLL.MCSService {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeShelvesNo", ReplyAction="*")]
System.Threading.Tasks.Task<string> writeShelvesNoAsync(string JsonVoiceArray, long ProjectID);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/overIssue", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
string overIssue(string isguid, string username);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/overIssue", ReplyAction="*")]
System.Threading.Tasks.Task<string> overIssueAsync(string isguid, string username);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeDeliveryDetails", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
string writeDeliveryDetails(string JsonVoiceArray, long ProjectID);
@@ -50,6 +50,13 @@ namespace BLL.MCSService {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeDeliveryDetails", ReplyAction="*")]
System.Threading.Tasks.Task<string> writeDeliveryDetailsAsync(string JsonVoiceArray, long ProjectID);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/overIssue", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
string overIssue(string isguid, string username);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/overIssue", ReplyAction="*")]
System.Threading.Tasks.Task<string> overIssueAsync(string isguid, string username);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getIssueDetails", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
string getIssueDetails(long projectID);
@@ -156,6 +163,14 @@ namespace BLL.MCSService {
return base.Channel.getVendorUserNameAndPwdAsync();
}
public string getPojectInfo() {
return base.Channel.getPojectInfo();
}
public System.Threading.Tasks.Task<string> getPojectInfoAsync() {
return base.Channel.getPojectInfoAsync();
}
public string getPoDetails(long projectID) {
return base.Channel.getPoDetails(projectID);
}
@@ -172,14 +187,6 @@ namespace BLL.MCSService {
return base.Channel.writeShelvesNoAsync(JsonVoiceArray, ProjectID);
}
public string overIssue(string isguid, string username) {
return base.Channel.overIssue(isguid, username);
}
public System.Threading.Tasks.Task<string> overIssueAsync(string isguid, string username) {
return base.Channel.overIssueAsync(isguid, username);
}
public string writeDeliveryDetails(string JsonVoiceArray, long ProjectID) {
return base.Channel.writeDeliveryDetails(JsonVoiceArray, ProjectID);
}
@@ -188,6 +195,14 @@ namespace BLL.MCSService {
return base.Channel.writeDeliveryDetailsAsync(JsonVoiceArray, ProjectID);
}
public string overIssue(string isguid, string username) {
return base.Channel.overIssue(isguid, username);
}
public System.Threading.Tasks.Task<string> overIssueAsync(string isguid, string username) {
return base.Channel.overIssueAsync(isguid, username);
}
public string getIssueDetails(long projectID) {
return base.Channel.getIssueDetails(projectID);
}