public TechnicalFeeService(EFContext efContext,
                            ICostStageRevisionService costStageRevisionService,
                            ICurrencyService currencyService,
                            ICostExchangeRateService costExchangeRateService)
 {
     _efContext = efContext;
     _costStageRevisionService = costStageRevisionService;
     _currencyService          = currencyService;
     _costExchangeRateService  = costExchangeRateService;
 }
예제 #2
0
 public CostLineItemUpdater(EFContext efContext,
                            ICostStageRevisionService costStageRevisionService,
                            ICostTemplateVersionService costTemplateVersionService,
                            ICostSectionFinder costSectionFinder,
                            ICostExchangeRateService costExchangeRateService)
 {
     _efContext = efContext;
     _costStageRevisionService   = costStageRevisionService;
     _costTemplateVersionService = costTemplateVersionService;
     _costSectionFinder          = costSectionFinder;
     _costExchangeRateService    = costExchangeRateService;
 }
예제 #3
0
 public BillingExpenseInterpolator(
     EFContext efContext,
     ICostStageRevisionService costStageRevisionService,
     ICostTemplateVersionService costTemplateVersionService,
     ICostSectionFinder costSectionFinder,
     ICostExchangeRateService costExchangeRateService)
 {
     _efContext = efContext;
     _costStageRevisionService   = costStageRevisionService;
     _costTemplateVersionService = costTemplateVersionService;
     _costSectionFinder          = costSectionFinder;
     _costExchangeRateService    = costExchangeRateService;
 }
 public PgPurchaseOrderService(EFContext efContext,
                               IOptions <AppSettings> appSettings,
                               IPgLedgerMaterialCodeService ledgerMaterialCode,
                               ICustomObjectDataService customDataService,
                               IPgCurrencyService pgCurrencyService,
                               ILogger logger,
                               IPgPaymentService pgPaymentService,
                               ICostExchangeRateService costExchangeRateService)
 {
     _efContext               = efContext;
     _ledgerMaterialCode      = ledgerMaterialCode;
     _customDataService       = customDataService;
     _appSettings             = appSettings.Value;
     _currencyService         = pgCurrencyService;
     _logger                  = logger;
     _pgPaymentService        = pgPaymentService;
     _costExchangeRateService = costExchangeRateService;
 }