public EmployeeManagersController(EmployeeManagerTimeTrackContext context, IManagerService mngService)
 {
     _context    = context;
     _mngService = mngService;
 }
Example #2
0
 public TimeTrackingController(EmployeeManagerTimeTrackContext context)
 {
     _context = context;
 }
 public EmployeeService(IOptions <AppSettings> appSettings, EmployeeManagerTimeTrackContext context)
 {
     _appSettings = appSettings.Value;
     _context     = context;
 }
Example #4
0
 public EmployeeInfoController(EmployeeManagerTimeTrackContext context, IEmployeeService empService)
 {
     _context    = context;
     _empService = empService;
 }