Пример #1
0
 public string DeleteUser(int userId)
 {
     try
     {
         userContext.DeleteUser(userId);
         return("User Added");
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }