Exemplo n.º 1
0
 public CustomerController(ICosmosRepository cosmosRepository, IContainerNameService containerNameService)
 {
     _cosmosRepository     = cosmosRepository;
     _containerNameService = containerNameService;
 }
Exemplo n.º 2
0
 public UserRepository(ICosmosRepository cosmosRepository)
 {
     _cosmosRepository = cosmosRepository;
 }
Exemplo n.º 3
0
 public PlayersController(ICosmosRepository cr) : base(cr)
 {
 }
 public RollBackDsg(ICosmosRepository cosmosRepository,
                    IDsgRollBackCosmosDocumentsJob undoCosmosJob)
 {
     _cosmosRepository = cosmosRepository;
     _undoCosmosJob    = undoCosmosJob;
 }
Exemplo n.º 5
0
 public CosmosDbScalingConfigRepository(ICosmosRepository cosmosRepository)
 {
     _cosmosRepository = cosmosRepository;
 }
Exemplo n.º 6
0
 public SegmentServicePatchOnetSkillTests()
 {
     repository = A.Fake <ICosmosRepository <JobProfileSkillSegmentModel> >();
     mapper     = A.Fake <IMapper>();
     jobProfileSegmentRefreshService = A.Fake <IJobProfileSegmentRefreshService <RefreshJobProfileSegmentServiceBusModel> >();
 }
 public ContentPageService(ICosmosRepository <ContentPageModel> repository)
 {
     this.repository = repository;
 }
Exemplo n.º 8
0
        public VersionRepository(ICosmosRepository cosmosRepository)
        {
            Guard.ArgumentNotNull(cosmosRepository, nameof(cosmosRepository));

            _cosmosRepository = cosmosRepository;
        }
Exemplo n.º 9
0
 public ContentPageServiceGetByNameTests()
 {
     repository         = A.Fake <ICosmosRepository <ContentPageModel> >();
     contentPageService = new ContentPageService(repository);
 }
Exemplo n.º 10
0
 public HowToBecomeSegmentService(ICosmosRepository <HowToBecomeSegmentModel> repository, IJobProfileSegmentRefreshService <RefreshJobProfileSegmentServiceBusModel> jobProfileSegmentRefreshService, IMapper mapper)
 {
     this.repository = repository;
     this.jobProfileSegmentRefreshService = jobProfileSegmentRefreshService;
     this.mapper = mapper;
 }
Exemplo n.º 11
0
 public CalculationResultsRepository(ICosmosRepository cosmosRepository, EngineSettings engineSettings)
 {
     Guard.ArgumentNotNull(engineSettings, nameof(engineSettings));
     _cosmosRepository = cosmosRepository;
     _engineSettings   = engineSettings;
 }
Exemplo n.º 12
0
        public ProviderSourceDatasetBulkRepository(ICosmosRepository cosmosRepository)
        {
            Guard.ArgumentNotNull(cosmosRepository, nameof(cosmosRepository));

            _cosmosRepository = cosmosRepository;
        }
 public SpecificationsRepository(ICosmosRepository cosmosRepository)
 {
     _repository = cosmosRepository;
 }
Exemplo n.º 14
0
 public ProfilingScalingRepository(ICosmosRepository cosmosRepository) : base(cosmosRepository)
 {
 }
 public ContentPageService(ICosmosRepository <TModel> repository) : base(repository)
 {
 }
 public UsersScalingRepository(ICosmosRepository cosmosRepository) : base(cosmosRepository)
 {
 }
Exemplo n.º 17
0
 public PartsController(ICosmosRepository cr) : base(cr)
 {
 }
 public AVCurrentOpportuntiesRefresh(ILogger <AVCurrentOpportuntiesRefresh> logger, ICosmosRepository <CurrentOpportunitiesSegmentModel> repository, IAVAPIService aVAPIService, AutoMapper.IMapper mapper, IJobProfileSegmentRefreshService <RefreshJobProfileSegmentServiceBusModel> jobProfileSegmentRefreshService)
 {
     this.logger       = logger;
     this.repository   = repository;
     this.aVAPIService = aVAPIService;
     this.mapper       = mapper;
     this.jobProfileSegmentRefreshService = jobProfileSegmentRefreshService;
 }
Exemplo n.º 19
0
        public ProviderVersionsMetadataRepository(ICosmosRepository cosmosCosmos)
        {
            Guard.ArgumentNotNull(cosmosCosmos, nameof(cosmosCosmos));

            _cosmos = cosmosCosmos;
        }
Exemplo n.º 20
0
 public EventsController(ICosmosRepository cr, INotificationRepository nr) : base(cr)
 {
     notifRepo = nr;
 }
 public DocumentService(ICosmosRepository <TModel> repository)
 {
     Repository = repository;
 }
 public PolicyRepository(ICosmosRepository cosmosRepository)
 {
     _cosmosRepository = cosmosRepository;
 }
 public CalculationProviderResultsScalingRepository(ICosmosRepository cosmosRepository) : base(cosmosRepository)
 {
 }
Exemplo n.º 24
0
 public TestsScalingRepository(ICosmosRepository cosmosRepository) : base(cosmosRepository)
 {
 }
Exemplo n.º 25
0
 public PartsController(ICosmosRepository cr, IBlobRepository br) : base(cr)
 {
     BlobRepo = br;
 }