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