Exemplo n.º 1
0
 public CustomerProcessor(
     IAddCustomerQueryProcessor addCustomerQueryProcessor,
     IUpdateCustomerQueryProcessor updateCustomerQueryProcessor,
     IDeleteIdenticalEntityQueryProcessor <Customer> deleteCustomerQueryProcessor,
     ICustomerQueryProcessor customerQueryProcessor,
     ICustomerDiscountQueryProcessor customerDiscountQueryProcessor,
     IMasterGetItemsQueryProcessor <Customer> customerGetItemsQueryProcessor,
     ICustomerMinQueryProcessor customerMinQueryProcessor,
     ICustomerExistsQueryProcessor customerExistsQueryProcessor,
     ICustomerImportQueryProcessor customerImportQueryProcessor,
     IAddCustomerPaymentContractQueryProcessor addCustomerPaymentContractQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.addCustomerQueryProcessor                = addCustomerQueryProcessor;
     this.updateCustomerQueryProcessor             = updateCustomerQueryProcessor;
     this.deleteCustomerQueryProcessor             = deleteCustomerQueryProcessor;
     this.customerQueryProcessor                   = customerQueryProcessor;
     this.customerDiscountQueryProcessor           = customerDiscountQueryProcessor;
     this.customerGetItemsQueryProcessor           = customerGetItemsQueryProcessor;
     this.customerMinQueryProcessor                = customerMinQueryProcessor;
     this.customerExistsQueryProcessor             = customerExistsQueryProcessor;
     this.customerImportQueryProcessor             = customerImportQueryProcessor;
     this.addCustomerPaymentContractQueryProcessor = addCustomerPaymentContractQueryProcessor;
     this.transactionScopeBuilder                  = transactionScopeBuilder;
 }
Exemplo n.º 2
0
 public BillingImporterProcessor(
     IBillingImporterCodeToIdSolveProcessor billingImporterCodeToIdSolveProcessor,
     IBillingProcessor billingProcessor,
     IBillingSaveProcessor billingSaveProcessor,
     IImporterSettingDetailQueryProcessor importerSettingDetailQueryProcessor,
     ICategoryByCodeQueryProcessor categoryByCodeQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <Category> categoryIdenticalEntityGetByIdsQueryProcessor,
     ICustomerQueryProcessor customerQueryProcessor,
     IAddCustomerQueryProcessor addCustomerQueryProcessor,
     IUpdateCustomerQueryProcessor updateCustomerQueryProcessor,
     IBillingSearchForImportQueryProcessor billingSearchForImportQueryProcessor,
     IUpdateBillingQueryProcessor updatebillingQueryProcessor,
     IBillingDivisionContractQueryProcessor billingDivisionContractQueryProcessor,
     IUpdateBillingDivisionContractQueryProcessor updateBillingDivisionContractQueryProcessor,
     IByCompanyGetEntityQueryProcessor <BillingDivisionSetting> billingDivisionSettingQueryProcessor,
     IAddBillingDivisionContractQueryProcessor addBillingDivisionContractQueryProcessor,
     ICustomerDiscountQueryProcessor customerDiscountQueryProcessor,
     IAddBillingDiscountQueryProcessor addBillingDiscountQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.billingImporterCodeToIdSolveProcessor = billingImporterCodeToIdSolveProcessor;
     this.billingProcessor     = billingProcessor;
     this.billingSaveProcessor = billingSaveProcessor;
     this.importerSettingDetailQueryProcessor           = importerSettingDetailQueryProcessor;
     this.categoryByCodeQueryProcessor                  = categoryByCodeQueryProcessor;
     this.categoryIdenticalEntityGetByIdsQueryProcessor = categoryIdenticalEntityGetByIdsQueryProcessor;
     this.customerQueryProcessor                      = customerQueryProcessor;
     this.addCustomerQueryProcessor                   = addCustomerQueryProcessor;
     this.updateCustomerQueryProcessor                = updateCustomerQueryProcessor;
     this.billingSearchForImportQueryProcessor        = billingSearchForImportQueryProcessor;
     this.updatebillingQueryProcessor                 = updatebillingQueryProcessor;
     this.billingDivisionContractQueryProcessor       = billingDivisionContractQueryProcessor;
     this.updateBillingDivisionContractQueryProcessor = updateBillingDivisionContractQueryProcessor;
     this.billingDivisionSettingQueryProcessor        = billingDivisionSettingQueryProcessor;
     this.addBillingDivisionContractQueryProcessor    = addBillingDivisionContractQueryProcessor;
     this.customerDiscountQueryProcessor              = customerDiscountQueryProcessor;
     this.addBillingDiscountQueryProcessor            = addBillingDiscountQueryProcessor;
     this.transactionScopeBuilder                     = transactionScopeBuilder;
 }