public System.Threading.Tasks.Task <InternshipAuthenticationService.Models.OperationResult.OperationResult> DeleteUserAsync(InternshipAuthenticationService.Models.ServiceModels.User user)
 {
     return(base.Channel.DeleteUserAsync(user));
 }
 public System.Threading.Tasks.Task <InternshipAuthenticationService.Models.OperationResult.OperationResult> ChangePasswordAsync(InternshipAuthenticationService.Models.ServiceModels.User user, string password)
 {
     return(base.Channel.ChangePasswordAsync(user, password));
 }
 public InternshipAuthenticationService.Models.OperationResult.OperationResult DeleteUser(InternshipAuthenticationService.Models.ServiceModels.User user)
 {
     return(base.Channel.DeleteUser(user));
 }
 public InternshipAuthenticationService.Models.OperationResult.OperationResult ChangePassword(InternshipAuthenticationService.Models.ServiceModels.User user, string password)
 {
     return(base.Channel.ChangePassword(user, password));
 }