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; }
public PgStageBuilder(IRuleService ruleService, EFContext efContext, ICostStageRevisionService costStageRevisionService, IPgCostService pgCostService ) { _ruleService = ruleService; _efContext = efContext; _costStageRevisionService = costStageRevisionService; _pgCostService = pgCostService; }