Example #1
0
 public System.Threading.Tasks.Task <bool> EditDepartmentAsync(string id, EmployeeManager.EmployeeManagerService.Department department)
 {
     return(base.Channel.EditDepartmentAsync(id, department));
 }
Example #2
0
 public System.Threading.Tasks.Task <bool> AddDepartmentAsync(EmployeeManager.EmployeeManagerService.Department department)
 {
     return(base.Channel.AddDepartmentAsync(department));
 }
Example #3
0
 public bool EditDepartment(string id, EmployeeManager.EmployeeManagerService.Department department)
 {
     return(base.Channel.EditDepartment(id, department));
 }
Example #4
0
 public bool AddDepartment(EmployeeManager.EmployeeManagerService.Department department)
 {
     return(base.Channel.AddDepartment(department));
 }