コード例 #1
0
 public StudentOperations(StudentManagement context)
 {
     studentDbContext = context;
 }
コード例 #2
0
 public ProgramTypeOperations(StudentManagement context)
 {
     programTypeDbContext = context;
 }
コード例 #3
0
 public StudentOperations(DbContextOptions options)
 {
     studentDbContext = new StudentManagement(options);
 }
コード例 #4
0
 public ProgramTypeOperations(DbContextOptions options)
 {
     programTypeDbContext = new StudentManagement(options);
 }