Example #1
0
 public System.Threading.Tasks.Task <WCFClient.EmpRefMessage.EmployeeInfoResponseMessage> GetEmployeeByIdAsync(string AuthenticationCode, int EmployeeId)
 {
     WCFClient.EmpRefMessage.EmployeeInfoRequestMessage inValue = new WCFClient.EmpRefMessage.EmployeeInfoRequestMessage();
     inValue.AuthenticationCode = AuthenticationCode;
     inValue.EmployeeId         = EmployeeId;
     return(((WCFClient.EmpRefMessage.IEmployeeService)(this)).GetEmployeeByIdAsync(inValue));
 }
Example #2
0
 public WCFClient.EmpRefMessage.Employee GetEmployeeById(string AuthenticationCode, int EmployeeId)
 {
     WCFClient.EmpRefMessage.EmployeeInfoRequestMessage inValue = new WCFClient.EmpRefMessage.EmployeeInfoRequestMessage();
     inValue.AuthenticationCode = AuthenticationCode;
     inValue.EmployeeId         = EmployeeId;
     WCFClient.EmpRefMessage.EmployeeInfoResponseMessage retVal = ((WCFClient.EmpRefMessage.IEmployeeService)(this)).GetEmployeeById(inValue);
     return(retVal.EmployeeInfo);
 }
Example #3
0
 System.Threading.Tasks.Task <WCFClient.EmpRefMessage.EmployeeInfoResponseMessage> WCFClient.EmpRefMessage.IEmployeeService.GetEmployeeByIdAsync(WCFClient.EmpRefMessage.EmployeeInfoRequestMessage request)
 {
     return(base.Channel.GetEmployeeByIdAsync(request));
 }
Example #4
0
 WCFClient.EmpRefMessage.EmployeeInfoResponseMessage WCFClient.EmpRefMessage.IEmployeeService.GetEmployeeById(WCFClient.EmpRefMessage.EmployeeInfoRequestMessage request)
 {
     return(base.Channel.GetEmployeeById(request));
 }