Example #1
0
 public List <About> GetAll()
 {
     return(_aboutDal.GetAll());
 }
Example #2
0
 public IDataResult <List <About> > GetAll()
 {
     return(new SuccessDataResult <List <About> >(_aboutDal.GetAll()));
 }
Example #3
0
 public List <About> GetAll(Expression <Func <About, bool> > filter = null)
 {
     return(_aboutDal.GetAll(filter));
 }