Esempio n. 1
0
 public Client.CalculatorService.Employee[] GetEmployeeByName(Client.CalculatorService.UserDetail UserDetail, string name)
 {
     Client.CalculatorService.GetEmployeeByNameRequest inValue = new Client.CalculatorService.GetEmployeeByNameRequest();
     inValue.UserDetail = UserDetail;
     inValue.name       = name;
     Client.CalculatorService.GetEmployeeByNameResponse retVal = ((Client.CalculatorService.CalculatorServiceSoap)(this)).GetEmployeeByName(inValue);
     return(retVal.GetEmployeeByNameResult);
 }
Esempio n. 2
0
 public System.Threading.Tasks.Task <Client.CalculatorService.GetEmployeeByNameResponse> GetEmployeeByNameAsync(Client.CalculatorService.UserDetail UserDetail, string name)
 {
     Client.CalculatorService.GetEmployeeByNameRequest inValue = new Client.CalculatorService.GetEmployeeByNameRequest();
     inValue.UserDetail = UserDetail;
     inValue.name       = name;
     return(((Client.CalculatorService.CalculatorServiceSoap)(this)).GetEmployeeByNameAsync(inValue));
 }
Esempio n. 3
0
 public GetEmployeeByNameRequest(Client.CalculatorService.UserDetail UserDetail, string name)
 {
     this.UserDetail = UserDetail;
     this.name       = name;
 }