Пример #1
0
 public List <User> GetAllUsers(Func <User, bool> predicate = null)
 {
     try
     {
         List <User> res = IDalService.GetAllUsers();
         return(res);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }