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