Exemple #1
0
 public string GetEmployee(string LicenseKey, ref int EmployeeId, out string Address)
 {
     WebApplicationPoderosa.WSEmployeeService.EmployeeRequest inValue = new WebApplicationPoderosa.WSEmployeeService.EmployeeRequest();
     inValue.LicenseKey = LicenseKey;
     inValue.EmployeeId = EmployeeId;
     WebApplicationPoderosa.WSEmployeeService.EmployeeInfo retVal = ((WebApplicationPoderosa.WSEmployeeService.IEmployeeService)(this)).GetEmployee(inValue);
     EmployeeId = retVal.EmployeeId;
     Address    = retVal.Address;
     return(retVal.Name);
 }
Exemple #2
0
 public System.Threading.Tasks.Task <WebApplicationPoderosa.WSEmployeeService.EmployeeInfo> GetEmployeeAsync(WebApplicationPoderosa.WSEmployeeService.EmployeeRequest request)
 {
     return(base.Channel.GetEmployeeAsync(request));
 }
Exemple #3
0
 WebApplicationPoderosa.WSEmployeeService.EmployeeInfo WebApplicationPoderosa.WSEmployeeService.IEmployeeService.GetEmployee(WebApplicationPoderosa.WSEmployeeService.EmployeeRequest request)
 {
     return(base.Channel.GetEmployee(request));
 }