Exemplo n.º 1
0
 public StudentOperations(StudentManagement context)
 {
     studentDbContext = context;
 }
 public ProgramTypeOperations(StudentManagement context)
 {
     programTypeDbContext = context;
 }
Exemplo n.º 3
0
 public StudentOperations(DbContextOptions options)
 {
     studentDbContext = new StudentManagement(options);
 }
 public ProgramTypeOperations(DbContextOptions options)
 {
     programTypeDbContext = new StudentManagement(options);
 }