예제 #1
0
 public System.Threading.Tasks.Task <bool> editDepartmentAsync(string id, CompanyConsumer.EmployeeServices.Department newDepartment)
 {
     return(base.Channel.editDepartmentAsync(id, newDepartment));
 }
예제 #2
0
 public System.Threading.Tasks.Task <bool> createDepartmentAsync(CompanyConsumer.EmployeeServices.Department newDepartment)
 {
     return(base.Channel.createDepartmentAsync(newDepartment));
 }
예제 #3
0
 public bool editDepartment(string id, CompanyConsumer.EmployeeServices.Department newDepartment)
 {
     return(base.Channel.editDepartment(id, newDepartment));
 }
예제 #4
0
 public bool createDepartment(CompanyConsumer.EmployeeServices.Department newDepartment)
 {
     return(base.Channel.createDepartment(newDepartment));
 }