public void DeleteUser(UsersWM webModel)
 {
     try
     {
         _usersOperations.DeleteUser(UsersMapping.MapToEntity(webModel));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.ToString());
     }
 }