public FundingStructureController(
            IFundingStructureService fundingStructureService)
        {
            Guard.ArgumentNotNull(fundingStructureService, nameof(fundingStructureService));

            _fundingStructureService = fundingStructureService;
        }
Beispiel #2
0
        public TemplateMetadataContentsTimedETagProvider(IFundingStructureService fundingStructureService)
        {
            Guard.ArgumentNotNull(fundingStructureService, nameof(fundingStructureService));

            _fundingStructureService = fundingStructureService;
        }