コード例 #1
0
 public List <Question> GetAll()
 {
     return(_questionDal.GetAll());
 }
コード例 #2
0
 public ICollection <Question> GetAll()
 {
     return(_questionDal.GetAll().ToList());
 }
 public List <Question> GetAll()
 {
     return(_context.GetAll(q => !q.IsDelete));
 }
コード例 #4
0
 public IDataResult <List <Question> > GetAll(Expression <Func <Question, bool> > filter = null)
 {
     return(new SuccessDataResult <List <Question> >(_questionDal.GetAll(filter)));
 }
コード例 #5
0
ファイル: QuestionManager.cs プロジェクト: gamzeerol/ExamApp
 public List <Question> GetAll(Expression <Func <Exam, bool> > filter = null)
 {
     return(_questionDal.GetAll());
 }
コード例 #6
0
ファイル: QuestionManager.cs プロジェクト: UtkuMutlu22/EBook
 public IDataResult <List <Question> > GetAll()
 {
     return(new SuccessDataResult <List <Question> >(_questionDal.GetAll()));
 }