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