Example #1
0
        public ProfileServiceGetByIdTests()
        {
            repository = A.Fake <ICosmosRepository <JobProfileModel> >();

            segmentService    = A.Fake <ISegmentService>();
            mapper            = A.Fake <IMapper>();
            jobProfileService = new JobProfileService(repository, segmentService, mapper);
        }
Example #2
0
 public ProfileController(ILogService logService, IJobProfileService jobProfileService, AutoMapper.IMapper mapper, FeedbackLinks feedbackLinks, ISegmentService segmentService, IRedirectionSecurityService redirectionSecurityService)
 {
     this.logService                 = logService;
     this.jobProfileService          = jobProfileService;
     this.mapper                     = mapper;
     this.feedbackLinks              = feedbackLinks;
     this.segmentService             = segmentService;
     this.redirectionSecurityService = redirectionSecurityService;
 }
 public LmiImportOrchestrationTrigger(
     ILogger <LmiImportOrchestrationTrigger> logger,
     IJobProfileService jobProfileService,
     IMapLmiToGraphService mapLmiToGraphService,
     ILmiSocImportService lmiSocImportService,
     IGraphService graphService,
     IEventGridService eventGridService,
     EventGridClientOptions eventGridClientOptions)
 {
     this.logger                 = logger;
     this.jobProfileService      = jobProfileService;
     this.mapLmiToGraphService   = mapLmiToGraphService;
     this.lmiSocImportService    = lmiSocImportService;
     this.graphService           = graphService;
     this.eventGridService       = eventGridService;
     this.eventGridClientOptions = eventGridClientOptions;
 }
Example #4
0
        public JobController
        (
            IConfiguration config,
            IUserService userService,
            // IJobService jobService,
            IJobDetailService jobDetailService,
            IAcademicTypeService academicTypeService,
            ISubjectService subjectService,
            IQualificationService qualificationService,
            IJobProfileService jobProfileService,
            IJobTypeService jobTypeService
        )

        {
            _userService = userService;
            // _jobService = jobService;
            _config               = config;
            _jobDetailService     = jobDetailService;
            _academicTypeService  = academicTypeService;
            _subjectService       = subjectService;
            _qualificationService = qualificationService;
            _jobProfileService    = jobProfileService;
            _jobTypeService       = jobTypeService;
        }
Example #5
0
 public JobProfileController(IJobProfileService jobProfileService, IRepository repository)
 {
     this.jobProfileService = jobProfileService;
     this.repository        = repository;
 }
Example #6
0
 public SitemapController(ILogService logService, IJobProfileService jobProfileService)
 {
     this.logService        = logService;
     this.jobProfileService = jobProfileService;
 }
Example #7
0
 /// <inheritdoc />
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="factory"></param>
 public JobProfileController(IChatBotDataFactory factory)
 {
     _jobProfileService = factory.GetJobProfileService();
     _mapper            = factory.GetMapperService();
 }
 public JobProfileController(IJobProfileService jobProfileService, IMapper mapper)
 {
     this.jobProfileService = jobProfileService;
     this.mapper            = mapper;
 }
 public HealthController(ILogService logService, IJobProfileService jobProfileService, AutoMapper.IMapper mapper)
 {
     this.logService        = logService;
     this.jobProfileService = jobProfileService;
     this.mapper            = mapper;
 }