public List <Question> GetAll() { return(_questionDal.GetAll()); }
public ICollection <Question> GetAll() { return(_questionDal.GetAll().ToList()); }
public List <Question> GetAll() { return(_context.GetAll(q => !q.IsDelete)); }
public IDataResult <List <Question> > GetAll(Expression <Func <Question, bool> > filter = null) { return(new SuccessDataResult <List <Question> >(_questionDal.GetAll(filter))); }
public List <Question> GetAll(Expression <Func <Exam, bool> > filter = null) { return(_questionDal.GetAll()); }
public IDataResult <List <Question> > GetAll() { return(new SuccessDataResult <List <Question> >(_questionDal.GetAll())); }