Example #1
0
 public IDataResult <List <Author> > GetAll()
 {
     return(new SuccessDataResult <List <Author> >(_authorDal.GetAll(), AuthorMessages.AuthorListed));
 }
 public IDataResult <List <Author> > GetAll()
 {
     return(new SuccessDataResult <List <Author> >(_authorDal.GetAll()));
 }
Example #3
0
 public List <Author> GetAll()
 {
     return(_authorDal.GetAll());
 }
Example #4
0
 public IEnumerable <Author> GetAll()
 {
     return(_authorDal.GetAll());
 }
Example #5
0
 public List <Author> GetAll(Expression <Func <Author, bool> > filter = null)
 {
     return(_authorDal.GetAll(filter));
 }