Пример #1
0
 public StudentOperations(StudentManagement context)
 {
     studentDbContext = context;
 }
 public ProgramTypeOperations(StudentManagement context)
 {
     programTypeDbContext = context;
 }
Пример #3
0
 public StudentOperations(DbContextOptions options)
 {
     studentDbContext = new StudentManagement(options);
 }
 public ProgramTypeOperations(DbContextOptions options)
 {
     programTypeDbContext = new StudentManagement(options);
 }