Пример #1
0
 public ReponseController(DaoQuestion daoQuestion, DaoReponse daoReponse)
 {
     this._daoQuestion = daoQuestion;
     this._daoReponse  = daoReponse;
     this._questions   = daoQuestion.GetQuestions().Result;
 }
Пример #2
0
 public QuestionController(DaoParagraphe daoParagraphe, DaoQuestion daoQuestion)
 {
     this._daoParagraphe = daoParagraphe;
     this._daoQuestion   = daoQuestion;
     paragraphes         = _daoParagraphe.GetAllParagraphes().Result;
 }