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())); }
public List <Author> GetAll() { return(_authorDal.GetAll()); }
public IEnumerable <Author> GetAll() { return(_authorDal.GetAll()); }
public List <Author> GetAll(Expression <Func <Author, bool> > filter = null) { return(_authorDal.GetAll(filter)); }