Esempio n. 1
0
 // DELETE api/values/5
 public bool Delete(int id)
 {
     try
     {
         using (var userOperation = new UsersOperations())
         {
             return(userOperation.DeleteUserById(id));
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }