Пример #1
0
 public UserManagementController(IHttpContextAccessor httpContextAccessor,
                                 IUserService userService,
                                 IMapper mapper,
                                 IUserService service,
                                 UserManager <ApplicationUser> userManager,
                                 RoleManager <ApplicationRole> roleManager,
                                 IASPService asp,
                                 SignInManager <ApplicationUser> signInManager,
                                 FileHelper fileHelper,
                                 ConfigHelper config,
                                 ExcelHelper excel,
                                 IUserHelper userHelper,
                                 MailingHelper mail,
                                 IOptions <HostConfiguration> hostConfiguration,
                                 NotifHelper notifHelper,
                                 IHostingEnvironment environment)
     : base(httpContextAccessor, userService, mapper, service, userHelper)
 {
     _asp               = asp;
     _userManager       = userManager;
     _roleManager       = roleManager;
     _fileHelper        = fileHelper;
     _config            = config;
     _hostConfiguration = hostConfiguration.Value;
     _environment       = environment;
     _signInManager     = signInManager;
     _excel             = excel;
     _notifHelper       = notifHelper;
 }
Пример #2
0
 public TravelController(IHttpContextAccessor httpContextAccessor,
                         IUserService userService, IMapper mapper,
                         IClaimService service,
                         ICostCenterService costCenter,
                         INetworkNumberService networkNumber,
                         IActivityCodeService activityCode,
                         ICityService city,
                         IVacancyListService vacancy,
                         IUserProfileService profileUser,
                         ICandidateInfoService candidate,
                         IOptions <HostConfiguration> hostConfiguration,
                         UserManager <ApplicationUser> userManager,
                         NotifHelper notif,
                         IUserProfileService profile,
                         ITicketInfoService ticket,
                         IUserHelper userHelper) :
     base(httpContextAccessor, userService, mapper, service, userHelper)
 {
     _costCenter        = costCenter;
     _networkNumber     = networkNumber;
     _activityCode      = activityCode;
     _city              = city;
     _notif             = notif;
     _userService       = userService;
     _profileUser       = profileUser;
     _hostConfiguration = hostConfiguration.Value;
     _userHelper        = userHelper;
     _vacancy           = vacancy;
     _candidate         = candidate;
     _userManager       = userManager;
     _profile           = profile;
     _ticket            = ticket;
 }
Пример #3
0
 public AssignmentController(IHttpContextAccessor httpContextAccessor,
                             IUserService userService, IMapper mapper,
                             IAssignmentService service,
                             IUserProfileService profileUser,
                             IUserProfileService user,
                             IOptions <HostConfiguration> hostConfiguration,
                             UserManager <ApplicationUser> userManager,
                             NotifHelper notif,
                             FileHelper file,
                             IHostingEnvironment env,
                             ExcelHelper excel,
                             IASPService asp,
                             IMapAsgBastService mappingAsgBast,
                             IBastService bast,
                             IWebSettingService webset,
                             IUserHelper userHelper) :
     base(httpContextAccessor, userService, mapper, service, userHelper)
 {
     _user              = user;
     _notif             = notif;
     _userService       = userService;
     _profileUser       = profileUser;
     _file              = file;
     _userHelper        = userHelper;
     _env               = env;
     _userManager       = userManager;
     _hostConfiguration = hostConfiguration.Value;
     _service           = service;
     _excel             = excel;
     _bast              = bast;
     _mappingAsgBast    = mappingAsgBast;
     _webset            = webset;
     this._asp          = asp;
 }
Пример #4
0
 public EscalationController(
     IHttpContextAccessor httpContextAccessor,
     IUserService userService,
     IMapper mapper,
     ISrfRequestService srf,
     ISrfEscalationRequestService service,
     IVacancyListService vacancy,
     ICandidateInfoService candidate,
     IDepartementService department,
     IHostingEnvironment env,
     IServicePackService ssow,
     IPackageTypeService packageType,
     ICostCenterService costCenter,
     MailingHelper mailingHelper,
     IOptions <HostConfiguration> hostConfiguration,
     NotifHelper notif,
     IDepartementSubService departmentSub,
     IServicePackCategoryService ssowCategory,
     IJobStageService jobsTage,
     IUserProfileService profileService,
     INetworkNumberService network,
     IAccountNameService account,
     UserManager <ApplicationUser> userManager,
     RoleManager <ApplicationRole> roleManager,
     SignInManager <ApplicationUser> signInManager,
     FileHelper fileHelper,
     ConfigHelper config,
     IUserHelper userHelper) :
     base(httpContextAccessor, userService, mapper, service, userHelper)
 {
     _srf               = srf;
     _vacancy           = vacancy;
     _candidate         = candidate;
     _department        = department;
     _packageType       = packageType;
     _ssow              = ssow;
     _ssowCategory      = ssowCategory;
     _jobStage          = jobsTage;
     _departmentSub     = departmentSub;
     _profileService    = profileService;
     _network           = network;
     _account           = account;
     _env               = env;
     _notif             = notif;
     _hostConfiguration = hostConfiguration.Value;
     _mailingHelper     = mailingHelper;
     _userHelper        = userHelper;
     _costCenter        = costCenter;
     _userManager       = userManager;
     _roleManager       = roleManager;
     _fileHelper        = fileHelper;
     _config            = config;
 }
Пример #5
0
 public RegistrationController(IHttpContextAccessor httpContextAccessor,
                               IUserService userService, IMapper mapper,
                               IAttendaceExceptionListService service,
                               IDepartementService department,
                               ICostCenterService cost,
                               IAccountNameService account,
                               INetworkNumberService network,
                               IProjectsService project,
                               IActivityCodeService code,
                               ISubOpsService subOp,
                               ICityService city,
                               IUserProfileService profile,
                               IActivityCodeService activity,
                               ITimeSheetTypeService timesheet,
                               IUserHelper userHelper,
                               ISrfRequestService srf,
                               ICandidateInfoService contractor,
                               IDepartementSubService departmentSub,
                               IUserProfileService profileUser,
                               IAttendanceRecordService attendanceRecord,
                               ICandidateInfoService candidate,
                               IVacancyListService vacancy,
                               IOptions <HostConfiguration> hostConfiguration,
                               NotifHelper notif) :
     base(httpContextAccessor, userService, mapper, service, userHelper)
 {
     _department        = department;
     _cost              = cost;
     _account           = account;
     _network           = network;
     _project           = project;
     _code              = code;
     _subOp             = subOp;
     _city              = city;
     _userHelper        = userHelper;
     _profile           = profile;
     _actiivity         = activity;
     _timesheet         = timesheet;
     _contractor        = contractor;
     _department        = department;
     _departmentSub     = departmentSub;
     _notif             = notif;
     _hostConfiguration = hostConfiguration.Value;
     _attendanceRecord  = attendanceRecord;
     _candidate         = candidate;
     _vacancy           = vacancy;
     _srf = srf;
 }
Пример #6
0
 public CandidateController(
     IHttpContextAccessor httpContextAccessor,
     IUserService userService,
     IMapper mapper,
     IVacancyListService vacancy,
     ICandidateInfoService service,
     UserManager <ApplicationUser> userManager,
     RoleManager <ApplicationRole> roleManager,
     FileHelper fileHelper,
     ConfigHelper config,
     IUserProfileService user,
     IUserProfileService profile,
     ISrfRequestService srf,
     MailingHelper mailingHelper,
     IOptions <HostConfiguration> hostConfiguration,
     NotifHelper notif,
     INetworkNumberService network,
     IDepartementService department,
     IUserHelper userHelper) :
     base(httpContextAccessor, userService, mapper, service, userHelper)
 {
     _vacancy           = vacancy;
     _user              = user;
     _userManager       = userManager;
     _roleManager       = roleManager;
     _fileHelper        = fileHelper;
     _config            = config;
     _userHelper        = userHelper;
     _profile           = profile;
     _userService       = userService;
     _notif             = notif;
     _hostConfiguration = hostConfiguration.Value;
     _mailingHelper     = mailingHelper;
     _service           = service;
     _srf        = srf;
     _department = department;
     _network    = network;
 }
Пример #7
0
 public ClaimController(IHttpContextAccessor httpContextAccessor,
                        IUserService userService, IMapper mapper,
                        IClaimService service,
                        ICostCenterService costCenter,
                        INetworkNumberService networkNumber,
                        IProjectsService project,
                        IDepartementSubService departmentSub,
                        IActivityCodeService activity,
                        IUserProfileService user,
                        ICandidateInfoService candidate,
                        IVacancyListService vacacncy,
                        IAllowanceFormService allowForm,
                        IOptions <HostConfiguration> hostConfiguration,
                        UserManager <ApplicationUser> userManager,
                        IClaimCategoryService claimCategory,
                        ISrfRequestService srf,
                        NotifHelper notif,
                        FileHelper file,
                        IUserHelper userHelper) :
     base(httpContextAccessor, userService, mapper, service, userHelper)
 {
     _costCenter        = costCenter;
     _networkNumber     = networkNumber;
     _project           = project;
     _departmentSub     = departmentSub;
     _activity          = activity;
     _user              = user;
     _notif             = notif;
     _claimCategory     = claimCategory;
     _candidate         = candidate;
     _vacancy           = vacacncy;
     _userManager       = userManager;
     _userHelper        = userHelper;
     _allowForm         = allowForm;
     _file              = file;
     _hostConfiguration = hostConfiguration.Value;
     _srf = srf;
 }