예제 #1
0
 public IEnumerable <Filme> Pagination(Expression <Func <Filme, bool> > exp, int skip, int take)
 {
     try
     {
         return(_filmeRepository.Pagination(exp, skip, take));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }