Example #1
0
 public PgCostBuilder(IPgStageBuilder pgStageBuilder,
                      IRuleService ruleService,
                      ICostStageRevisionService costStageRevisionService,
                      IAgencyService agencyService,
                      IProjectService projectService,
                      EFContext efContext,
                      ICostNumberGeneratorService costNumberGeneratorService,
                      IPgCurrencyService currencyService,
                      IPgLedgerMaterialCodeService pgLedgerMaterialCodeService,
                      ICostLineItemService costLineItemService,
                      ICostTemplateVersionService costTemplateVersionService,
                      IPermissionService permissionService,
                      IPgCostService pgCostService,
                      IPgCostSectionTotalsBuilder pgTotalsBuilder,
                      IPgPaymentService pgPaymentService,
                      IExchangeRateService exchangeRateService)
 {
     _pgStageBuilder           = pgStageBuilder;
     _ruleService              = ruleService;
     _costStageRevisionService = costStageRevisionService;
     _agencyService            = agencyService;
     _projectService           = projectService;
     _efContext = efContext;
     _costNumberGeneratorService  = costNumberGeneratorService;
     _currencyService             = currencyService;
     _pgLedgerMaterialCodeService = pgLedgerMaterialCodeService;
     _costLineItemService         = costLineItemService;
     _costTemplateVersionService  = costTemplateVersionService;
     _permissionService           = permissionService;
     _pgCostService       = pgCostService;
     _pgTotalsBuilder     = pgTotalsBuilder;
     _pgPaymentService    = pgPaymentService;
     _exchangeRateService = exchangeRateService;
 }
Example #2
0
 internal ReopenRequestedNotificationBuilder(IMapper mapper,
                                             IApplicationUriHelper uriHelper, ICostStageRevisionService costStageRevisionService,
                                             IMetadataProviderService metadataProviderService,
                                             AppSettings appSettings,
                                             EFContext efContext,
                                             IRegionsService regionsService) :
     base(mapper, uriHelper, costStageRevisionService, metadataProviderService, appSettings, efContext, regionsService)
 {
 }
 public TechnicalFeeService(EFContext efContext,
                            ICostStageRevisionService costStageRevisionService,
                            ICurrencyService currencyService,
                            ICostExchangeRateService costExchangeRateService)
 {
     _efContext = efContext;
     _costStageRevisionService = costStageRevisionService;
     _currencyService          = currencyService;
     _costExchangeRateService  = costExchangeRateService;
 }
 public PgCostStatusResolver(
     EFContext efContext,
     ILogger logger,
     ICostStageRevisionService costStageRevisionService,
     IRuleService ruleService)
 {
     _efContext = efContext;
     _logger    = logger;
     _costStageRevisionService = costStageRevisionService;
     _ruleService = ruleService;
 }
 public PgStageBuilder(IRuleService ruleService,
                       EFContext efContext,
                       ICostStageRevisionService costStageRevisionService,
                       IPgCostService pgCostService
                       )
 {
     _ruleService = ruleService;
     _efContext   = efContext;
     _costStageRevisionService = costStageRevisionService;
     _pgCostService            = pgCostService;
 }
Example #6
0
 public CostLineItemUpdater(EFContext efContext,
                            ICostStageRevisionService costStageRevisionService,
                            ICostTemplateVersionService costTemplateVersionService,
                            ICostSectionFinder costSectionFinder,
                            ICostExchangeRateService costExchangeRateService)
 {
     _efContext = efContext;
     _costStageRevisionService   = costStageRevisionService;
     _costTemplateVersionService = costTemplateVersionService;
     _costSectionFinder          = costSectionFinder;
     _costExchangeRateService    = costExchangeRateService;
 }
Example #7
0
 public BillingExpenseInterpolator(
     EFContext efContext,
     ICostStageRevisionService costStageRevisionService,
     ICostTemplateVersionService costTemplateVersionService,
     ICostSectionFinder costSectionFinder,
     ICostExchangeRateService costExchangeRateService)
 {
     _efContext = efContext;
     _costStageRevisionService   = costStageRevisionService;
     _costTemplateVersionService = costTemplateVersionService;
     _costSectionFinder          = costSectionFinder;
     _costExchangeRateService    = costExchangeRateService;
 }
Example #8
0
 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;
 }
 protected NotificationBuilderBase(IMapper mapper,
                                   IApplicationUriHelper uriHelper, ICostStageRevisionService costStageRevisionService,
                                   IMetadataProviderService metadataProviderService,
                                   AppSettings appSettings,
                                   EFContext efContext,
                                   IRegionsService regionsService)
 {
     Mapper     = mapper;
     _uriHelper = uriHelper;
     CostStageRevisionService = costStageRevisionService;
     MetadataProviderService  = metadataProviderService;
     AppSettings    = appSettings;
     EFContext      = efContext;
     RegionsService = regionsService;
 }
 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;
 }
Example #11
0
 public PgUserService(
     EFContext efContext,
     IMapper mapper,
     IPermissionService permissionService,
     ILogger logger,
     ICostStageRevisionService costStageRevisionService,
     IActivityLogService activityLogService,
     IEventService eventService,
     IPluginAgencyService pgAgencyService)
 {
     _efContext                = efContext;
     _mapper                   = mapper;
     _permissionService        = permissionService;
     _logger                   = logger;
     _costStageRevisionService = costStageRevisionService;
     _activityLogService       = activityLogService;
     _eventService             = eventService;
     _pgAgencyService          = pgAgencyService;
 }
 public PgPaymentService(
     EFContext efContext,
     ICostStageRevisionService costStageRevisionService,
     IRuleService ruleService,
     IStageService stageService,
     IPgCurrencyService pgCurrencyService,
     IPgCostSectionTotalsBuilder pgTotalsBuilder,
     IPgCostStageRevisionTotalPaymentsBuilder pgTotalPaymentsBuilder,
     ICustomObjectDataService customObjectDataService
     )
 {
     _efContext = efContext;
     _costStageRevisionService = costStageRevisionService;
     _ruleService             = ruleService;
     _stageService            = stageService;
     _pgCurrencyService       = pgCurrencyService;
     _pgTotalsBuilder         = pgTotalsBuilder;
     _pgTotalPaymentsBuilder  = pgTotalPaymentsBuilder;
     _customObjectDataService = customObjectDataService;
 }
 public BudgetFormService(
     EFContext efContext,
     IExcelCellService excelCellService,
     ICostStageRevisionService costStageRevisionService,
     ICostLineItemUpdater costLineItemUpdater,
     ISupportingDocumentsService supportingDocumentsService,
     ICostCurrencyUpdater costCurrencyUpdater,
     IBudgetFormPropertyValidator budgetFormValidator,
     ICostService costService,
     IActivityLogService activityLogService,
     IMapper mapper)
 {
     _efContext                  = efContext;
     _excelCellService           = excelCellService;
     _costStageRevisionService   = costStageRevisionService;
     _costLineItemUpdater        = costLineItemUpdater;
     _supportingDocumentsService = supportingDocumentsService;
     _costCurrencyUpdater        = costCurrencyUpdater;
     _budgetFormValidator        = budgetFormValidator;
     _activityLogService         = activityLogService;
     _mapper = mapper;
 }
Example #14
0
 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;
 }
 public CostCurrencyUpdater(EFContext efContext,
                            ICostStageRevisionService costStageRevisionService)
 {
     _efContext = efContext;
     _costStageRevisionService = costStageRevisionService;
 }
Example #16
0
 public MetadataProviderService(EFContext efContext, ICostStageRevisionService costStageRevisionService)
 {
     _efContext = efContext;
     _costStageRevisionService = costStageRevisionService;
 }
 public PgCostUserRoleService(EFContext efContext, ICostStageRevisionService costStageRevisionService)
 {
     _efContext = efContext;
     _costStageRevisionService = costStageRevisionService;
 }
Example #18
0
 internal ReminderPendingTechnicalNotificationBuilder(IMapper mapper,
                                                      IApplicationUriHelper uriHelper, ICostStageRevisionService costStageRevisionService,
                                                      IMetadataProviderService metadataProviderService,
                                                      IApprovalService approvalService,
                                                      AppSettings appSettings,
                                                      EFContext efContext,
                                                      IRegionsService regionsService) :
     base(mapper, uriHelper, costStageRevisionService, metadataProviderService, appSettings, efContext, regionsService)
 {
     _approvalService = approvalService;
 }
Example #19
0
 public PgMediaTypesService(EFContext efContext, ICostStageRevisionService costStageRevisionService)
 {
     _efContext = efContext;
     _costStageRevisionService = costStageRevisionService;
 }