Example #1
0
 public DivisionDAO()
 {
     db        = new QLHSSmartKidsDataContext();
     divisions = db.GetTable <Division>();
 }
Example #2
0
 public StudentParentsDAO()
 {
     db = new QLHSSmartKidsDataContext();
     StudentParentsTable = db.GetTable <StudentParent>();
 }
 public StudentDailyTrackerDAO()
 {
     db       = new QLHSSmartKidsDataContext();
     students = db.GetTable <Student>();
 }
Example #4
0
 public GradeDAO()
 {
     db    = new QLHSSmartKidsDataContext();
     grade = db.GetTable <Grade>();
 }
Example #5
0
 public FunctionGroupDAO()
 {
     db = new QLHSSmartKidsDataContext();
 }
Example #6
0
 public MealDAO()
 {
     db    = new QLHSSmartKidsDataContext();
     meals = db.GetTable <Meal>();
 }
Example #7
0
 public EmployeeDAO()
 {
     db = new QLHSSmartKidsDataContext();
 }
Example #8
0
 public LocationDAO()
 {
     db = new QLHSSmartKidsDataContext();
 }
Example #9
0
 public ClassDAO()
 {
     db         = new QLHSSmartKidsDataContext();
     ClassTable = db.GetTable <Class>();
 }
Example #10
0
 public ReligionDAO()
 {
     db = new QLHSSmartKidsDataContext();
 }
Example #11
0
 public HistoryDAO()
 {
     db      = new QLHSSmartKidsDataContext();
     history = db.GetTable <History>();
 }
Example #12
0
 public StudentClassDao()
 {
     db = new QLHSSmartKidsDataContext();
     StudentClassTable = db.GetTable <Student_Class>();
 }
Example #13
0
 public DailyMenuDAO()
 {
     db = new QLHSSmartKidsDataContext();
 }
Example #14
0
 public SemesterDAO()
 {
     db        = new QLHSSmartKidsDataContext();
     semesters = db.GetTable <Semester>();
     courses   = db.GetTable <Course>();
 }
Example #15
0
 public DishDAO()
 {
     db     = new QLHSSmartKidsDataContext();
     dishes = db.GetTable <Dish>();
 }
Example #16
0
 public EthenicGroupDAO()
 {
     db = new QLHSSmartKidsDataContext();
 }
Example #17
0
 public LessonDAO()
 {
     db      = new QLHSSmartKidsDataContext();
     lessons = db.GetTable <Lesson>();
 }
Example #18
0
 public DailyTrackerDrugTimeDAO()
 {
     db = new QLHSSmartKidsDataContext();
     dailyTrackerDrugTimes = db.GetTable <DailyTrackerDrugTime>();
 }
Example #19
0
 public DepartmentDAO()
 {
     db         = new QLHSSmartKidsDataContext();
     department = db.GetTable <Department>();
 }
Example #20
0
 public WeekDAO()
 {
     db    = new QLHSSmartKidsDataContext();
     weeks = db.GetTable <Week>();
 }
Example #21
0
 public ContractDAO()
 {
     db       = new QLHSSmartKidsDataContext();
     contract = db.GetTable <Contract>();
     employee = db.GetTable <Employee>();
 }
Example #22
0
 public DishDetailDAO()
 {
     db          = new QLHSSmartKidsDataContext();
     dishDetails = db.GetTable <DishDetail>();
 }
Example #23
0
 public AgeGroupDAO()
 {
     db        = new QLHSSmartKidsDataContext();
     AgeGroups = db.GetTable <AgeGroup>();
 }
Example #24
0
 public TopicDAO()
 {
     db     = new QLHSSmartKidsDataContext();
     topics = db.GetTable <Topic>();
 }
Example #25
0
 public IngredientDAO()
 {
     db          = new QLHSSmartKidsDataContext();
     ingredients = db.GetTable <Ingredient>();
 }
Example #26
0
 public CourseDAO()
 {
     db     = new QLHSSmartKidsDataContext();
     course = db.GetTable <Course>();
 }
Example #27
0
 public PositionDAO()
 {
     db       = new QLHSSmartKidsDataContext();
     position = db.GetTable <Position>();
 }
Example #28
0
 public DegreeDAO()
 {
     db = new QLHSSmartKidsDataContext();
 }