Esempio n. 1
0
 public GetAllQuery(Expression <Func <T, bool> > @where, PagedOptions <T> pageOption = null, Expression <Func <T, object> > include = null)
 {
     Where      = @where;
     PageOption = pageOption;
     Include    = include;
 }
Esempio n. 2
0
 public GetAllQuery(PagedOptions <T> pageOption = null)
 {
     PageOption = pageOption;
 }