public QuestionController()
 {
     _context = new StudyEnglishContext();
 }
Exemple #2
0
 public TopicResultController()
 {
     _context = new StudyEnglishContext();
 }
 public SongController()
 {
     _context = new StudyEnglishContext();
 }
 public VocabularyController()
 {
     _context = new StudyEnglishContext();
 }
 public VocabularyBL(StudyEnglishContext context)
 {
     _context = context;
 }
 public SongBL(StudyEnglishContext context)
 {
     _context = context;
 }
 public TopicResultBL(StudyEnglishContext context)
 {
     _context = context;
 }
 public SubtitleBL(StudyEnglishContext context)
 {
     _context = context;
 }
Exemple #9
0
 public SubtitleController()
 {
     _context = new StudyEnglishContext();
 }
Exemple #10
0
 public AnswerBL(StudyEnglishContext context)
 {
     _context = context;
 }
Exemple #11
0
 public AnswerController()
 {
     _context = new StudyEnglishContext();
 }
 public QuestionBL(StudyEnglishContext context)
 {
     _context = context;
 }