Example #1
0
 public MatchingCancellationProcessor(
     IDbSystemDateTimeQueryProcessor dbSystemDatetimeQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlGetByCompanyIdQueryProcessor,
     ICancelMatchingQueryProcessor cancelMatchingQueryProcessor,
     IDeleteTransactionDataQueryProcessor <MatchingHeader> deleteMatchingHeaderQueryProcessor,
     IDeleteTransactionQueryProcessor <Billing> deleteBillingByIdQueryProcessor,
     ITransactionalGetByIdsQueryProcessor <Receipt> receiptGetByIdsQueryProcessor,
     IDeleteTransactionQueryProcessor <Receipt> deleteReceiptByIdQueryProcessor,
     IDeleteReceiptQueryProcessor deleteReceiptQueryProcessor,
     IDeleteMatchingBillingDiscountQueryProcessor deleteMatchingBillingDiscountQueryProcessor,
     INettingQueryProcessor nettingQueryProcessor,
     IUpdateNettingQueryProcessor updateNettingQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.dbSystemDatetimeQueryProcessor = dbSystemDatetimeQueryProcessor;
     this.applicationControlGetByCompanyIdQueryProcessor = applicationControlGetByCompanyIdQueryProcessor;
     this.cancelMatchingQueryProcessor                = cancelMatchingQueryProcessor;
     this.deleteMatchingHeaderQueryProcessor          = deleteMatchingHeaderQueryProcessor;
     this.deleteBillingByIdQueryProcessor             = deleteBillingByIdQueryProcessor;
     this.receiptGetByIdsQueryProcessor               = receiptGetByIdsQueryProcessor;
     this.deleteReceiptByIdQueryProcessor             = deleteReceiptByIdQueryProcessor;
     this.deleteReceiptQueryProcessor                 = deleteReceiptQueryProcessor;
     this.deleteMatchingBillingDiscountQueryProcessor = deleteMatchingBillingDiscountQueryProcessor;
     this.nettingQueryProcessor       = nettingQueryProcessor;
     this.updateNettingQueryProcessor = updateNettingQueryProcessor;
     this.transactionScopeBuilder     = transactionScopeBuilder;
 }
 public MatchingSequentialProcessor(
     IMatchingSolveProcessor matchingSolveProcessor,
     IMatchingSaveProcessor matchingSaveProcessor,
     IMatchingQueryProcessor matchingQueryProcessor,
     IAddReceiptMemoQueryProcessor addReceiptMemoQueryProcessor,
     IUpdateNettingQueryProcessor updateNettingQueryProcessor,
     IByCompanyGetEntitiesQueryProcessor <MatchingOrder> matchingOrderQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlQueryProcessor,
     IAddCustomerFeeQueryProcessor addCustomerFeeQueryProcessor,
     IAddPaymentAgencyFeeQueryProcessor addPaymentAgencyFeeQueryProcessor,
     IDbSystemDateTimeQueryProcessor dbSystemDateTimeQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.matchingSolveProcessor            = matchingSolveProcessor;
     this.matchingSaveProcessor             = matchingSaveProcessor;
     this.matchingQueryProcessor            = matchingQueryProcessor;
     this.addReceiptMemoQueryProcessor      = addReceiptMemoQueryProcessor;
     this.updateNettingQueryProcessor       = updateNettingQueryProcessor;
     this.matchingOrderQueryProcessor       = matchingOrderQueryProcessor;
     this.applicationControlQueryProcessor  = applicationControlQueryProcessor;
     this.addCustomerFeeQueryProcessor      = addCustomerFeeQueryProcessor;
     this.addPaymentAgencyFeeQueryProcessor = addPaymentAgencyFeeQueryProcessor;
     this.dbSystemDateTimeQueryProcessor    = dbSystemDateTimeQueryProcessor;
     this.transactionScopeBuilder           = transactionScopeBuilder;
 }
 public MatchingIndividualProcessor(
     IMatchingSaveProcessor matchingSaveProcessor,
     IMatchingSolveProcessor matchingSolveProcessor,
     IMatchingQueryProcessor matchingQueryProcessor,
     INettingQueryProcessor nettingQueryProcessor,
     IUpdateNettingQueryProcessor updateNettingQueryProcessor,
     IAddReceiptMemoQueryProcessor addReceiptMemoQueryProcessor,
     IUpdateKanaHistoryCustomerQueryProcessor updateKanaHistoryCustomerQueryProcessor,
     IUpdateKanaHistoryPaymentAgencyQueryProcessor updateKanaHistoryPaymentAgencyQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <Customer> customerGetByIdsQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <PaymentAgency> paymentAgencyGetByIdsQueryProcessor,
     IAddCustomerFeeQueryProcessor addCustomerFeeQueryProcessor,
     IAddPaymentAgencyFeeQueryProcessor addPaymentAgencyFeeQueryProcessor,
     IUpdateCustomerQueryProcessor updateCustomerQueryProcessor,
     IAddCustomerGroupQueryProcessor addCustomerGroupQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlQueryProcessor,
     IDbSystemDateTimeQueryProcessor dbSystemDateTimeQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.matchingSaveProcessor                        = matchingSaveProcessor;
     this.matchingSolveProcessor                       = matchingSolveProcessor;
     this.matchingQueryProcessor                       = matchingQueryProcessor;
     this.nettingQueryProcessor                        = nettingQueryProcessor;
     this.updateNettingQueryProcessor                  = updateNettingQueryProcessor;
     this.addReceiptMemoQueryProcessor                 = addReceiptMemoQueryProcessor;
     this.updateKanaHistoryCustomerQueryProcessor      = updateKanaHistoryCustomerQueryProcessor;
     this.updateKanaHistoryPaymentAgencyQueryProcessor = updateKanaHistoryPaymentAgencyQueryProcessor;
     this.customerGetByIdsQueryProcessor               = customerGetByIdsQueryProcessor;
     this.paymentAgencyGetByIdsQueryProcessor          = paymentAgencyGetByIdsQueryProcessor;
     this.addCustomerFeeQueryProcessor                 = addCustomerFeeQueryProcessor;
     this.addPaymentAgencyFeeQueryProcessor            = addPaymentAgencyFeeQueryProcessor;
     this.updateCustomerQueryProcessor                 = updateCustomerQueryProcessor;
     this.addCustomerGroupQueryProcessor               = addCustomerGroupQueryProcessor;
     this.applicationControlQueryProcessor             = applicationControlQueryProcessor;
     this.dbSystemDateTimeQueryProcessor               = dbSystemDateTimeQueryProcessor;
     this.transactionScopeBuilder                      = transactionScopeBuilder;
 }