Example #1
0
 public StudentRepository()
 {
     studentDataContext = new TimetableDataContext();
 }
 public Subj_TeachRepository()
 {
     subj_teachDataContext = new TimetableDataContext();
 }
Example #3
0
 public TimetableRepository()
 {
     timetableDataContext = new TimetableDataContext();
 }
Example #4
0
 public TeacherRepository()
 {
     teacherDataContext = new TimetableDataContext();
 }
Example #5
0
 public TeacherRepository(TimetableDataContext dataContext)
 {
     _dataContext = dataContext;
 }
Example #6
0
 public DataManager(TimetableDataContext dataContext)
 {
     _dataContext = dataContext;
 }
 public SubjectRepository(TimetableDataContext dataContext)
 {
     _dataContext = dataContext;
 }
 public GroupRepository()
 {
     groupDataContext = new TimetableDataContext();
 }
 public Subj_TeachRepository(TimetableDataContext dataContext)
 {
     _dataContext = dataContext;
 }
Example #10
0
 public StudentRepository(TimetableDataContext dataContext)
 {
     _dataContext = dataContext;
 }
Example #11
0
 public SubjectRepository()
 {
     subjectDataContext = new TimetableDataContext();
 }
Example #12
0
 public GroupRepository(TimetableDataContext dataContext)
 {
     _dataContext = dataContext;
 }