Пример #1
0
 public DepartmentsController(
     EmployersDbContext context,
     IEventBus eventBus)
 {
     _context  = context;
     _eventBus = eventBus;
 }
Пример #2
0
 public EmployersDbContextSeed(
     EmployersDbContext context,
     ILogger <EmployersDbContextSeed> logger,
     IEventBus eventBus)
 {
     _context  = context;
     _logger   = logger;
     _eventBus = eventBus;
 }
Пример #3
0
 public EmployersController(
     EmployersDbContext context,
     IEventBus eventBus,
     EmployersDbContextSeed seeder)
 {
     _context  = context;
     _eventBus = eventBus;
     _seeder   = seeder;
 }
Пример #4
0
 public EmployersRepo(EmployersDbContext context)
 {
     this.context = context;
 }
Пример #5
0
 public BrandedTemplatesController(EmployersDbContext context)
 {
     _context = context;
 }
Пример #6
0
 public PartnersChangedHandler(EmployersDbContext context)
 {
     _context = context;
 }
Пример #7
0
 public AreasChangedHandler(EmployersDbContext context)
 {
     _context = context;
 }
Пример #8
0
 public DepartmentsChangedHandler(EmployersDbContext context)
 {
     _context = context;
 }
Пример #9
0
 public EmployerTypesChangedHandler(EmployersDbContext context)
 {
     _context = context;
 }