Exemplo n.º 1
0
 public System.Threading.Tasks.Task <Database.Communication.DatabaseService.UpdateResponse> UpdateAsync(Database.Communication.DatabaseService.Employee employee)
 {
     Database.Communication.DatabaseService.UpdateRequest inValue = new Database.Communication.DatabaseService.UpdateRequest();
     inValue.Body          = new Database.Communication.DatabaseService.UpdateRequestBody();
     inValue.Body.employee = employee;
     return(((Database.Communication.DatabaseService.DatabaseServiceSoap)(this)).UpdateAsync(inValue));
 }
Exemplo n.º 2
0
 public int Update(Database.Communication.DatabaseService.Employee employee)
 {
     Database.Communication.DatabaseService.UpdateRequest inValue = new Database.Communication.DatabaseService.UpdateRequest();
     inValue.Body          = new Database.Communication.DatabaseService.UpdateRequestBody();
     inValue.Body.employee = employee;
     Database.Communication.DatabaseService.UpdateResponse retVal = ((Database.Communication.DatabaseService.DatabaseServiceSoap)(this)).Update(inValue);
     return(retVal.Body.UpdateResult);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <Database.Communication.DatabaseService.UpdateResponse> Database.Communication.DatabaseService.DatabaseServiceSoap.UpdateAsync(Database.Communication.DatabaseService.UpdateRequest request)
 {
     return(base.Channel.UpdateAsync(request));
 }
Exemplo n.º 4
0
 Database.Communication.DatabaseService.UpdateResponse Database.Communication.DatabaseService.DatabaseServiceSoap.Update(Database.Communication.DatabaseService.UpdateRequest request)
 {
     return(base.Channel.Update(request));
 }