Example #1
0
 public bool DeleteUserById(int id)
 {
     try
     {
         return(_usersDao.DeleteUserById(id));
     }
     catch (SqlException e)
     {
         throw new DALException(DALType.SQL, e.Message, e);
     }
 }