public EleveAgController()
 {
     db            = new ProNetDbContext();
     eleveQuery    = new EleveQuery(db);
     classeQuery   = new ClasseQuery(db);
     eleveCommand  = new EleveCommand(db);
     classeCommand = new ClasseCommand(db);
 }
Beispiel #2
0
 public EleveQuery(ProNetDbContext context)
 {
     _context = context;
 }
 public NoteCommand(ProNetDbContext context)
 {
     _context = context;
 }
 public EleveCommand(ProNetDbContext context)
 {
     _context = context;
 }
 public ClasseTest()
 {
     _context = new ProNetDbContext();
     comm     = new ClasseCommand(_context);
     query    = new ClasseQuery(_context);
 }
 public AbsenceCommand(ProNetDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public AbsenceQuery(ProNetDbContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public ClasseQuery(ProNetDbContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public HomeController()
 {
     db           = new ProNetDbContext();
     eleveQuery   = new EleveQuery(db);
     absenceQuery = new AbsenceQuery(db);
 }
 public ClasseController()
 {
     db            = new ProNetDbContext();
     classeQuery   = new ClasseQuery(db);
     classeCommand = new ClasseCommand(db);
 }
 public NoteQuery(ProNetDbContext context)
 {
     _context = context;
 }