internal RecalledNotificationBuilder(IMapper mapper, IApplicationUriHelper uriHelper, ICostStageRevisionService costStageRevisionService, IApprovalService approvalService, ICostFormService costFormService, ICustomObjectDataService customObjectDataService, IMetadataProviderService metadataProviderService, AppSettings appSettings, EFContext efContext, IRegionsService regionsService) : base(mapper, uriHelper, costStageRevisionService, metadataProviderService, appSettings, efContext, regionsService) { _costStageRevisionService = costStageRevisionService; _approvalService = approvalService; _costFormService = costFormService; _customObjectDataService = customObjectDataService; }
public BillingExpensesService(EFContext efContext, IMapper mapper, IFinancialYearService financialYearService, ICostFormService costFormService, IBillingExpenseBuilder builder, IBillingExpenseCalculator calculator, IBillingExpenseInterpolator interpolator, ICostStageRevisionService costStageRevisionService) { _efContext = efContext; _mapper = mapper; _financialYearService = financialYearService; _costFormService = costFormService; _builder = builder; _calculator = calculator; _interpolator = interpolator; _costStageRevisionService = costStageRevisionService; }
public EmailNotificationBuilder(IMapper mapper, IApplicationUriHelper uriHelper, ICostStageRevisionService costStageRevisionService, IApprovalService approvalService, IRegionsService regionsService, IOptions <AppSettings> appSettings, ICostFormService costFormService, ICustomObjectDataService customObjectDataService, IPgPaymentService pgPaymentService, ICostStageService costStageService, IMetadataProviderService metadataProviderService, EFContext efContext) { _mapper = mapper; _uriHelper = uriHelper; _costStageRevisionService = costStageRevisionService; _approvalService = approvalService; _regionsService = regionsService; _costFormService = costFormService; _customObjectDataService = customObjectDataService; _pgPaymentService = pgPaymentService; _costStageService = costStageService; _metadataProviderService = metadataProviderService; _efContext = efContext; _appSettings = appSettings.Value; }