public System.Threading.Tasks.Task <TestClient.FileManagementService.Employee> GetEmployeeAsync(TestClient.FileManagementService.UserToken token, string username)
 {
     return(base.Channel.GetEmployeeAsync(token, username));
 }
 public System.Threading.Tasks.Task <TestClient.FileManagementService.Employee[]> GetEmployeesAsync(TestClient.FileManagementService.UserToken token)
 {
     return(base.Channel.GetEmployeesAsync(token));
 }
 public TestClient.FileManagementService.Employee GetEmployee(TestClient.FileManagementService.UserToken token, string username)
 {
     return(base.Channel.GetEmployee(token, username));
 }
 public TestClient.FileManagementService.Employee[] GetEmployees(TestClient.FileManagementService.UserToken token)
 {
     return(base.Channel.GetEmployees(token));
 }
 public System.Threading.Tasks.Task AddEmployeeAsync(TestClient.FileManagementService.UserToken token, TestClient.FileManagementService.Employee employee)
 {
     return(base.Channel.AddEmployeeAsync(token, employee));
 }
 public void AddEmployee(TestClient.FileManagementService.UserToken token, TestClient.FileManagementService.Employee employee)
 {
     base.Channel.AddEmployee(token, employee);
 }
 public System.Threading.Tasks.Task LogoutAsync(TestClient.FileManagementService.UserToken token)
 {
     return(base.Channel.LogoutAsync(token));
 }
 public void Logout(TestClient.FileManagementService.UserToken token)
 {
     base.Channel.Logout(token);
 }