public ProviderSnapshotForFundingStreamService(IPublishingAreaRepository publishingAreaRepository,
                                                       IMapper mapper)
        {
            Guard.ArgumentNotNull(publishingAreaRepository, nameof(publishingAreaRepository));
            Guard.ArgumentNotNull(mapper, nameof(mapper));

            _publishingAreaRepository = publishingAreaRepository;
            _mapper = mapper;
        }
Example #2
0
        public OrganisationsRetrievalService(IPublishingAreaRepository publishingAreaRepository,
                                             IMapper mapper)
        {
            Guard.ArgumentNotNull(publishingAreaRepository, nameof(publishingAreaRepository));
            Guard.ArgumentNotNull(mapper, nameof(mapper));

            _publishingAreaRepository = publishingAreaRepository;
            _mapper = mapper;
        }
        public LocalAuthorityRetrievalService(IPublishingAreaRepository publishingAreaRepository,
                                              IMapper mapper)
        {
            Guard.ArgumentNotNull(publishingAreaRepository, nameof(publishingAreaRepository));
            Guard.ArgumentNotNull(mapper, nameof(mapper));

            _publishingAreaRepository = publishingAreaRepository;
            _mapper = mapper;
        }
Example #4
0
        public ProviderSnapshotMetadataRetrievalService(IPublishingAreaRepository publishingAreaRepository,
                                                        IMapper mapper)
        {
            Guard.ArgumentNotNull(publishingAreaRepository, nameof(publishingAreaRepository));
            Guard.ArgumentNotNull(mapper, nameof(mapper));

            _publishingAreaRepository = publishingAreaRepository;
            _mapper = mapper;
        }
        public FundingStreamsWithProviderSnapshotsRetrievalService(IPublishingAreaRepository publishingAreaRepository)
        {
            Guard.ArgumentNotNull(publishingAreaRepository, nameof(publishingAreaRepository));

            _publishingAreaRepository = publishingAreaRepository;
        }
Example #6
0
        public DatasetsForFundingStreamService(IPublishingAreaRepository publishingAreaRepository)
        {
            Guard.ArgumentNotNull(publishingAreaRepository, nameof(publishingAreaRepository));

            _publishingAreaRepository = publishingAreaRepository;
        }
        public DataDownloadService(IPublishingAreaRepository publishingAreaRepository)
        {
            Guard.ArgumentNotNull(publishingAreaRepository, nameof(publishingAreaRepository));

            _publishingAreaRepository = publishingAreaRepository;
        }