コード例 #1
0
 public EducationalInstitutionsController(
     EducationalInstitutionsDbContext context,
     IEventBus eventBus,
     EducationalInstituionsDbContextSeed seeder)
 {
     _context  = context;
     _eventBus = eventBus;
     _seeder   = seeder;
 }
コード例 #2
0
 public EducationalInstituionsDbContextSeed(
     EducationalInstitutionsDbContext context,
     ILogger <EducationalInstituionsDbContextSeed> logger,
     IEventBus eventBus)
 {
     _context  = context;
     _logger   = logger;
     _eventBus = eventBus;
 }
コード例 #3
0
 public EducationalInstitutionsChangedHandler(EducationalInstitutionsDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public BrandedTemplatesController(EducationalInstitutionsDbContext context)
 {
     _context = context;
 }
コード例 #5
0
 public FacultiesController(EducationalInstitutionsDbContext context)
 {
     _context = context;
 }