Пример #1
0
 public ConversationController(IUser user, IStudySession studySession)
 {
     this.User         = user;
     this.StudySession = studySession;
     //this.db = db;
     ec = new EducationController(user, studySession, this);
 }
 public EducationController(IUser user, IStudySession studySession, ConversationController cc)
 {
     this.user                   = user;
     this.db                     = new DataBaseController();
     this.studySession           = studySession;
     this.ConversationController = cc;
     Qac = new QuestionsAnswersControllers();
 }