Exemplo n.º 1
0
 public Authenticate(
     IHttpContextAccessor contextAccessor,
     Encrypt cryptography,
     IOptions <AuthOptions> authConfiguration,
     emp_infoContext context)
 {
     _httpContext       = contextAccessor.HttpContext;
     _cryptography      = cryptography;
     _authConfiguration = authConfiguration.Value;
     _context           = context;
 }
Exemplo n.º 2
0
 public EmployeePerfsController(emp_infoContext context)
 {
     _context = context;
 }
 public RatesController(emp_infoContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
        public AdminController(emp_infoContext context, Encrypt cryptography)

        {
            _context      = context;
            _cryptography = cryptography;
        }
Exemplo n.º 5
0
 public MainUserController(emp_infoContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public JobdetailsController(emp_infoContext context)
 {
     _context = context;
 }
 public SalariesController(emp_infoContext context)
 {
     _context = context;
 }
 public ManagerRatingsController(emp_infoContext context)
 {
     _context = context;
 }