Beispiel #1
0
 public List <Question> GetAll()
 {
     return(_questionDal.GetAll());
 }
Beispiel #2
0
 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)));
 }
Beispiel #5
0
 public List <Question> GetAll(Expression <Func <Exam, bool> > filter = null)
 {
     return(_questionDal.GetAll());
 }
Beispiel #6
0
 public IDataResult <List <Question> > GetAll()
 {
     return(new SuccessDataResult <List <Question> >(_questionDal.GetAll()));
 }