Example #1
0
 public List <User> GetAll()
 {
     try
     {
         return(_userDAL.GetAll().ToList());
     }
     catch
     {
         throw new EmptyListException("User");
     }
 }
 public ICollection <Users> GetAll()
 {
     return(_userDAL.GetAll());
 }
Example #3
0
 public ICollection <Model.User> GetList()
 {
     return(_userDAL.GetAll());
 }