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