public EmployeesService(EmployeeManagementMVCContext context, IConfiguration configuration)
 {
     _context          = context;
     Configuration     = configuration;
     EmployeeIQ        = _context.Employee;
     OrderByDictionary = InitOrderByDictionary(OrderByDictionary);
 }
 public EmployeesController(EmployeeManagementMVCContext context, IConfiguration configuration)
 {
     _context         = context;
     Configuration    = configuration;
     EmployeeIQ       = _context.Employee;
     EmployeesService = new EmployeesService(_context, Configuration);
 }
 public EmployeesLoginController(EmployeeManagementMVCContext context)
 {
     _context              = context;
     EmployeeIQ            = _context.Employee;
     EmployeesLoginService = new EmployeesLoginService(EmployeeIQ);
 }
Ejemplo n.º 4
0
 public EmployeesVerifyController(EmployeeManagementMVCContext context)
 {
     _context = context;
 }