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 OrderExportToThirdPartyController(IOrderExportDocumentRepository orderExportDocumentRepository, ICostCentreApplicationService costCentreApplicationService)
 {
     _orderExportDocumentRepository = orderExportDocumentRepository;
     _costCentreApplicationService = costCentreApplicationService;
 }