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