public CommandRouterOnRequestResponseBuilder(ICommandRoutingOnRequestRepository commandRoutingOnRequestRepository, 
     ICostCentreApplicationService costCentreApplicationService
     )
 {
     _commandRoutingOnRequestRepository = commandRoutingOnRequestRepository;
     _costCentreApplicationService = costCentreApplicationService;
 }
示例#2
0
 public CommandController(ICommandDeserialize commandDeserialize, IBusPublisher busPublisher,
     ICostCentreApplicationService costCentreApplicationService, ICommandProcessingAuditRepository commandProcessingAuditRepository)
 {
     _commandDeserialize = commandDeserialize;
     _busPublisher = busPublisher;
     _costCentreApplicationService = costCentreApplicationService;
     _commandProcessingAuditRepository = commandProcessingAuditRepository;
 }
 public PullMasterDataController(IPullMasterDataResponseBuilder pullMasterDataResponseBuilder,
     IMasterDataCachingInvalidator masterDataCachingInvalidator,
     ICostCentreApplicationService costCentreApplicationService
     )
 {
     _centreApplicationService = costCentreApplicationService;
     _pullMasterDataResponseBuilder = pullMasterDataResponseBuilder;
     _masterDataCachingInvalidator = masterDataCachingInvalidator;
 }
 public NewIntegrationsController(ICountryImporterService countryImporterService, IRegionImporterService regionImporterService, 
     IBankImporterService bankImporterService, IBankBranchImporterService bankBranchImporterService, ISupplierImporterService 
     supplierImporterService, IVATClassImporterService vatClassImporterService, ISaleProductImporterService saleProductImporterService, 
     IProductBrandImporterService productBrandImporterService, IPricingImporterService pricingImporterService, 
     IDistributorImporterService distributorImporterService, IDistributorSalesmanImporterService distributorSalesmanImporterService, 
     IRouteImporterService routeImporterService, IOutletImporterService outletImporterService, 
     IProductFlavourImporterService productFlavourImporterService, IProductTypeImporterService productTypeImporterService, 
     IAreaImporterService areaImporterService, IInventoryImporterService inventoryImporterService, 
     IPricingTierImporterService pricingTierImporterService, IProductDiscountGroupImporterService productDiscountGroupImporterService, 
     IDiscountGroupImporterService discountGroupImporterService, IProductPackagingTypeImporterService productPackagingTypeImporterService, 
     IOutletCategoryImporterService outletCategoryImporterService, IOutletTypeImporterService outletTypeImporterService, 
     ICostCentreApplicationService costCentreApplicationService, IOrderExportDocumentRepository orderExportDocumentRepository, 
     IReceiptExportDocumentRepository receiptExportDocumentRepository, IInvoiceExportDocumentRepository invoiceExportDocumentRepository, 
     IProductDiscountImporterService productDiscountImporterService, IReturnInventoryExportDocumentRepository returnInventoryExportDocumentRepository, 
     IProductPackagingImporterService productPackagingImporterService, ICommodityTypeImporterService commodityTypeImporterService, ICommodityImporterService commodityImporterService, ICommoditySupplierImporterService commoditySupplierImporterService, ICommodityOwnerImporterService commodityOwnerImporterService, ICommodityOwnerTypeImporterService commodityOwnerTypeImporterService)
 {
     _countryImporterService = countryImporterService;
     _regionImporterService = regionImporterService;
     _bankImporterService = bankImporterService;
     _bankBranchImporterService = bankBranchImporterService;
     _supplierImporterService = supplierImporterService;
     _vatClassImporterService = vatClassImporterService;
     _saleProductImporterService = saleProductImporterService;
     _productBrandImporterService = productBrandImporterService;
     _pricingImporterService = pricingImporterService;
     _distributorImporterService = distributorImporterService;
     _distributorSalesmanImporterService = distributorSalesmanImporterService;
     _routeImporterService = routeImporterService;
     _outletImporterService = outletImporterService;
     _productFlavourImporterService = productFlavourImporterService;
     _productTypeImporterService = productTypeImporterService;
     _areaImporterService = areaImporterService;
     _inventoryImporterService = inventoryImporterService;
     _pricingTierImporterService = pricingTierImporterService;
     _productDiscountGroupImporterService = productDiscountGroupImporterService;
     _discountGroupImporterService = discountGroupImporterService;
     _productPackagingTypeImporterService = productPackagingTypeImporterService;
     _outletCategoryImporterService = outletCategoryImporterService;
     _outletTypeImporterService = outletTypeImporterService;
     _costCentreApplicationService = costCentreApplicationService;
     _orderExportDocumentRepository = orderExportDocumentRepository;
     _receiptExportDocumentRepository = receiptExportDocumentRepository;
     _invoiceExportDocumentRepository = invoiceExportDocumentRepository;
     _productDiscountImporterService = productDiscountImporterService;
     _returnInventoryExportDocumentRepository = returnInventoryExportDocumentRepository;
     _productPackagingImporterService = productPackagingImporterService;
     _commodityTypeImporterService = commodityTypeImporterService;
     _commodityImporterService = commodityImporterService;
     _commoditySupplierImporterService = commoditySupplierImporterService;
     _commodityOwnerImporterService = commodityOwnerImporterService;
     _commodityOwnerTypeImporterService = commodityOwnerTypeImporterService;
 }
 public AzureCommandController(IBusPublisher busPublisher, ICostCentreApplicationService costCentreApplicationService, ICommandProcessingAuditRepository commandProcessingAuditRepository)
 {
     _busPublisher = busPublisher;
     _costCentreApplicationService = costCentreApplicationService;
     _commandProcessingAuditRepository = commandProcessingAuditRepository;
 }
 public IntegrationsController(IDistributrIntegrationService integrationService, ICostCentreApplicationService costCentreApplicationService)
 {
     _integrationService = integrationService;
     _costCentreApplicationService = costCentreApplicationService;
 }
 // IBusPublisher _busPublisher;
   public CommandEnvelopeController(ICommandEnvelopeProcessingAuditRepository commandEnvelopeProcessingAuditRepository, ICostCentreApplicationService costCentreApplicationService, IControllerBusPublisher busPublisher)
   {
       _commandEnvelopeProcessingAuditRepository = commandEnvelopeProcessingAuditRepository;
       _costCentreApplicationService = costCentreApplicationService;
       _busPublisher = busPublisher;
   }
 public CostCentreApplicationController(ICostCentreApplicationService costCentreApplicationService)
 {
     _costCentreApplicationService = costCentreApplicationService;
 }
 public CommandRoutingController(ICostCentreApplicationService costCentreApplicationService, ICommandRouterResponseBuilder commandRouterResponseBuilder)
 {
     _costCentreApplicationService = costCentreApplicationService;
     _commandRouterResponseBuilder = commandRouterResponseBuilder;
 }
 public CommandEnvelopeRouterResponseBuilder(ICommandEnvelopeRouteOnRequestCostcentreRepository envelopeRouteOnRequestCostcentreRepository, ICostCentreApplicationService costCentreApplicationService)
 {
     _envelopeRouteOnRequestCostcentreRepository = envelopeRouteOnRequestCostcentreRepository;
     _costCentreApplicationService = costCentreApplicationService;
 }
 public OrderExportToThirdPartyController(IOrderExportDocumentRepository orderExportDocumentRepository, ICostCentreApplicationService costCentreApplicationService)
 {
     _orderExportDocumentRepository = orderExportDocumentRepository;
     _costCentreApplicationService = costCentreApplicationService;
 }