示例#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);
 }