Esempio n. 1
0
 public SegmentServiceUpdateTests()
 {
     repository = A.Fake <ICosmosRepository <CareerPathSegmentModel> >();
     jobProfileSegmentRefreshService = A.Fake <IJobProfileSegmentRefreshService <RefreshJobProfileSegmentServiceBusModel> >();
     mapper = A.Fake <IMapper>();
     careerPathSegmentService = new CareerPathSegmentService(repository, jobProfileSegmentRefreshService, mapper);
 }
 public SegmentController(ICareerPathSegmentService careerPathSegmentService, AutoMapper.IMapper mapper, ILogService logService, IJobProfileSegmentRefreshService <RefreshJobProfileSegmentServiceBusModel> refreshService)
 {
     this.careerPathSegmentService = careerPathSegmentService;
     this.mapper         = mapper;
     this.logService     = logService;
     this.refreshService = refreshService;
 }
 public HealthController(ILogger <HealthController> logger, ICareerPathSegmentService careerPathSegmentService)
 {
     this.logger = logger;
     this.careerPathSegmentService = careerPathSegmentService;
 }