public PgLedgerMaterialCodeService(
     EFContext efContext,
     ICustomObjectDataService customDataService)
 {
     _efContext         = efContext;
     _customDataService = customDataService;
 }
Exemplo n.º 2
0
 public CostUserService(EFContext efContext, IRegionsService regionsService,
                        ICustomObjectDataService customObjectDataService)
 {
     _efContext               = efContext;
     _regionsService          = regionsService;
     _customObjectDataService = customObjectDataService;
 }
Exemplo n.º 3
0
 public PgActionBuilder(
     EFContext efContext,
     IRuleService ruleService,
     ICustomObjectDataService customObjectDataService,
     IPgCostUserRoleService costUserRoleService
     )
 {
     _efContext = efContext;
     _ruleService = ruleService;
     _customObjectDataService = customObjectDataService;
     _costUserRoleService = costUserRoleService;
 }
Exemplo n.º 4
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;
 }
 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;
 }
Exemplo n.º 6
0
 public PgPurchaseOrderResponseConsumer(EFContext efContext,
                                        ICustomObjectDataService customDataService,
                                        IMapper mapper,
                                        IApprovalService approvalService,
                                        IEmailNotificationService emailNotificationService,
                                        ICostActionService costActionService,
                                        IEventService eventService,
                                        IPgPaymentService pgPaymentService,
                                        IActivityLogService activityLogService)
 {
     _efContext                = efContext;
     _customDataService        = customDataService;
     _mapper                   = mapper;
     _approvalService          = approvalService;
     _emailNotificationService = emailNotificationService;
     _costActionService        = costActionService;
     _eventService             = eventService;
     _pgPaymentService         = pgPaymentService;
     _activityLogService       = activityLogService;
 }
Exemplo n.º 7
0
 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;
 }
Exemplo n.º 8
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;
 }