Ejemplo n.º 1
0
 public APIController(IOptions <AzureAdB2COptions> azureAdB2COptions,
                      IUserService <ApplicationUser> uService,
                      IOfferService <JobOffer> oService,
                      IOptions <MyConfig> options,
                      HR_ProjectContext context)
 {
     AzureAdB2COptions = azureAdB2COptions.Value;
     userService       = uService;
     _context          = context;
     this.options      = options;
 }
Ejemplo n.º 2
0
 public UsersController(HR_ProjectContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public JobApplicationsController(HR_ProjectContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public JobOffersController(HR_ProjectContext context, IOfferService <JobOffer> offerService)
 {
     this.offerService = offerService;
     _context          = context;
 }
Ejemplo n.º 5
0
 public UserService(HR_ProjectContext context)
 {
     this._context = context;
 }
 public OpenIdConnectOptionsSetup(IOptions <AzureAdB2COptions> b2cOptions, HR_ProjectContext context)
 {
     AzureAdB2COptions = b2cOptions.Value;
     _context          = context;
 }