示例#1
0
 public System.Threading.Tasks.Task <MyBaseWCF_ConsumeClient.MyBaseService.EmployeeData> GetEmployeeMessageAsync(bool IsActive, string EmployeeName)
 {
     MyBaseWCF_ConsumeClient.MyBaseService.EmployeeMessage inValue = new MyBaseWCF_ConsumeClient.MyBaseService.EmployeeMessage();
     inValue.IsActive     = IsActive;
     inValue.EmployeeName = EmployeeName;
     return(((MyBaseWCF_ConsumeClient.MyBaseService.IService1)(this)).GetEmployeeMessageAsync(inValue));
 }
示例#2
0
 public string GetEmployeeMessage(bool IsActive, string EmployeeName)
 {
     MyBaseWCF_ConsumeClient.MyBaseService.EmployeeMessage inValue = new MyBaseWCF_ConsumeClient.MyBaseService.EmployeeMessage();
     inValue.IsActive     = IsActive;
     inValue.EmployeeName = EmployeeName;
     MyBaseWCF_ConsumeClient.MyBaseService.EmployeeData retVal = ((MyBaseWCF_ConsumeClient.MyBaseService.IService1)(this)).GetEmployeeMessage(inValue);
     return(retVal.Message);
 }
示例#3
0
 System.Threading.Tasks.Task <MyBaseWCF_ConsumeClient.MyBaseService.EmployeeData> MyBaseWCF_ConsumeClient.MyBaseService.IService1.GetEmployeeMessageAsync(MyBaseWCF_ConsumeClient.MyBaseService.EmployeeMessage request)
 {
     return(base.Channel.GetEmployeeMessageAsync(request));
 }
示例#4
0
 MyBaseWCF_ConsumeClient.MyBaseService.EmployeeData MyBaseWCF_ConsumeClient.MyBaseService.IService1.GetEmployeeMessage(MyBaseWCF_ConsumeClient.MyBaseService.EmployeeMessage request)
 {
     return(base.Channel.GetEmployeeMessage(request));
 }