Example #1
0
 public AccountController(
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     IIdentityServerInteractionService interaction,
     IClientStore clientStore,
     IAuthenticationSchemeProvider schemeProvider,
     IEventService events,
     IServiceProvider serviceProvider,
     IRoleService roleService,
     IEmployeeProfileService employeeProfileService,
     ICompanyService companyService,
     IAntiforgery antiforgery,
     IConfiguration config)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _interaction            = interaction;
     _clientStore            = clientStore;
     _schemeProvider         = schemeProvider;
     _events                 = events;
     _serviceProvider        = serviceProvider;
     _roleService            = roleService;
     _employeeProfileService = employeeProfileService;
     _companyService         = companyService;
     _antiforgery            = antiforgery;
     _config                 = config;
 }
Example #2
0
 public EmployeeController(IEmployeeProfileService employeeService, IJobService jobService, IOfferService offerService, ISectionService sectionService, ISkillService skillService, ICommitProvider commitProvider)
 {
     _employeeService = employeeService;
     _jobService      = jobService;
     _offerService    = offerService;
     _sectionService  = sectionService;
     _skillService    = skillService;
     _commitProvider  = commitProvider;
 }
Example #3
0
 public JobController(IJobService jobService, IEmployeeProfileService employeeService, IOfferService offerService, ISectionService sectionService, ISkillService skillService, INotificationService notificationService, ICommitProvider commitProvider)
 {
     _jobService          = jobService;
     _employeeService     = employeeService;
     _offerService        = offerService;
     _sectionService      = sectionService;
     _skillService        = skillService;
     _notificationService = notificationService;
     _commitProvider      = commitProvider;
 }
Example #4
0
 public ClientController(IEmployeeProfileService employeeProfileService, ICompanyService companyService, EcoDbContext context)
 {
     _employeeProfileService = employeeProfileService;
     _companyService         = companyService;
     _context = context;
 }
 public EmployeeProfileController(IEmployeeProfileService employeeProfileService)
 {
     _employeeProfileService = employeeProfileService;
 }