Exemple #1
0
 public DepartmentsController(HRManagementContext context)
 {
     _context = context;
 }
 public EmployeesController(HRManagementContext context)
 {
     _context = context;
 }
Exemple #3
0
 public UserService(HRManagementContext context, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _appSettings = appSettings.Value;
 }
 public JobsController(HRManagementContext context)
 {
     _context = context;
 }