Exemplo n.º 1
0
 public CollectionScheduleProcessor(
     ICollectionScheduleQueryProcessor collectionScheduleQueryProcessor,
     ICategoryByCodeQueryProcessor categoryByCodeQueryProcessor,
     ICustomerPaymentContractQueryProcessor customerPaymentContractQueryProcessor
     )
 {
     this.collectionScheduleQueryProcessor      = collectionScheduleQueryProcessor;
     this.categoryByCodeQueryProcessor          = categoryByCodeQueryProcessor;
     this.customerPaymentContractQueryProcessor = customerPaymentContractQueryProcessor;
 }
Exemplo n.º 2
0
 public BillingImporterCodeToIdSolveProcessor(
     IMasterGetByCodesQueryProcessor <Currency> currencyGetByCodesQueryProcessor,
     IMasterGetByCodesQueryProcessor <Customer> customerGetByCodesQueryProcessor,
     IMasterGetByCodesQueryProcessor <Department> departmentGetByCodesQueryProcessor,
     IMasterGetByCodesQueryProcessor <Staff> staffGetByCodesQueryProcessor,
     IMasterGetByCodesQueryProcessor <AccountTitle> accountTitleGetByCodesQueryProcessor,
     ICategoryByCodeQueryProcessor categoryByCodeQueryProcessor
     )
 {
     this.currencyGetByCodesQueryProcessor     = currencyGetByCodesQueryProcessor;
     this.customerGetByCodesQueryProcessor     = customerGetByCodesQueryProcessor;
     this.departmentGetByCodesQueryProcessor   = departmentGetByCodesQueryProcessor;
     this.staffGetByCodesQueryProcessor        = staffGetByCodesQueryProcessor;
     this.accountTitleGetByCodesQueryProcessor = accountTitleGetByCodesQueryProcessor;
     this.categoryByCodeQueryProcessor         = categoryByCodeQueryProcessor;
 }
Exemplo n.º 3
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;
 }
Exemplo n.º 4
0
        public ReceiptProcessor(

            IReceiptQueryProcessor receiptQueryProcessor,
            IReceiptExistsQueryProcessor receiptExistsQueryProcessor,
            IUpdateReceiptQueryProcessor updateReceiptQueryProcessor,
            IDeleteTransactionQueryProcessor <Receipt> deleteReceiptByIdQueryProcessor,
            IAddReceiptQueryProcessor addReceiptQueryProcessor,
            IDeleteReceiptExcludeQueryProcessor deleteReceiptExcludeQueryProcessor,
            ITransactionalGetByIdsQueryProcessor <Receipt> receiptGetByIdsQueryProcessor,
            IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlProcessor,
            IAdvanceReceivedBackupQueryProcessor advanceReceivedBackupQueryProcessor,
            IReceiptMemoQueryProcessor receiptMemoQueryProcessor,
            IAddReceiptMemoQueryProcessor addReceiptMemoQueryProcessor,
            IDeleteReceiptMemoQueryProcessor deleteReceiptMemoQueryProcessor,
            ICategoryByCodeQueryProcessor categoryByCodeQueryProcessor,
            IKanaHistoryCustomerQueryProcessor kanaHistoryCustomerQueryProcessor,
            IAddKanaHistoryCustomerQueryProcessor addKanaHistoryCustomerQueryProcessor,
            IMatchingQueryProcessor matchingQueryProcessor,
            ITransactionScopeBuilder transactionScopeBuilder
            )
        {
            this.receiptQueryProcessor                = receiptQueryProcessor;
            this.receiptExistsQueryProcessor          = receiptExistsQueryProcessor;
            this.updateReceiptQueryProcessor          = updateReceiptQueryProcessor;
            this.deleteReceiptByIdQueryProcessor      = deleteReceiptByIdQueryProcessor;
            this.addReceiptQueryProcessor             = addReceiptQueryProcessor;
            this.deleteReceiptExcludeQueryProcessor   = deleteReceiptExcludeQueryProcessor;
            this.receiptGetByIdsQueryProcessor        = receiptGetByIdsQueryProcessor;
            this.applicationControlProcessor          = applicationControlProcessor;
            this.advanceReceivedBackupQueryProcessor  = advanceReceivedBackupQueryProcessor;
            this.receiptMemoQueryProcessor            = receiptMemoQueryProcessor;
            this.addReceiptMemoQueryProcessor         = addReceiptMemoQueryProcessor;
            this.deleteReceiptMemoQueryProcessor      = deleteReceiptMemoQueryProcessor;
            this.categoryByCodeQueryProcessor         = categoryByCodeQueryProcessor;
            this.kanaHistoryCustomerQueryProcessor    = kanaHistoryCustomerQueryProcessor;
            this.addKanaHistoryCustomerQueryProcessor = addKanaHistoryCustomerQueryProcessor;
            this.matchingQueryProcessor               = matchingQueryProcessor;
            this.transactionScopeBuilder              = transactionScopeBuilder;
        }
Exemplo n.º 5
0
 public CategoryProcessor(
     ICategoryByCodeQueryProcessor categoryByCodeQueryProcessor,
     ICategoriesQueryProcessor categoriesQueryProcessor,
     IAddCategoryQueryProcessor addCategoryQueryProcessor,
     IDeleteIdenticalEntityQueryProcessor <Category> categoryDeleteIdenticalQueryProcessor,
     IAccountTitleQueryProcessor accountTitleByIdQueryProcessor,
     ITaxClassQueryProcessor taxClassQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <PaymentAgency> identicalGetByIdsQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <Category> categoryIdenticalEntityGetByIdsQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <AccountTitle> accountTitleIdenticalEntityGetByIdsQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.categoryByCodeQueryProcessor          = categoryByCodeQueryProcessor;
     this.categoriesQueryProcessor              = categoriesQueryProcessor;
     this.addCategoryQueryProcessor             = addCategoryQueryProcessor;
     this.categoryDeleteIdenticalQueryProcessor = categoryDeleteIdenticalQueryProcessor;
     this.accountTitleByIdQueryProcessor        = accountTitleByIdQueryProcessor;
     this.taxClassQueryProcessor          = taxClassQueryProcessor;
     this.identicalGetByIdsQueryProcessor = identicalGetByIdsQueryProcessor;
     this.categoryIdenticalEntityGetByIdsQueryProcessor     = categoryIdenticalEntityGetByIdsQueryProcessor;
     this.accountTitleIdenticalEntityGetByIdsQueryProcessor = accountTitleIdenticalEntityGetByIdsQueryProcessor;
     this.transactionScopeBuilder = transactionScopeBuilder;
 }
 public AdvanceReceivedSplitProcessor(
     IReceiptQueryProcessor receiptQueryProcessor,
     IReceiptMemoQueryProcessor receiptMemoQueryProcessor,
     IAdvanceReceivedBackupQueryProcessor advanceReceivedBackupQueryProcessor,
     IAddReceiptQueryProcessor addReceiptQueryProcessor,
     IAddReceiptMemoQueryProcessor addReceiptMemoQueryProcessor,
     ITransactionalGetByIdQueryProcessor <Receipt> receiptGetByIdQueryProcessor,
     IDeleteTransactionQueryProcessor <Receipt> deleteReceiptByIdQueryProcessor,
     IDeleteReceiptMemoQueryProcessor deleteReceiptMemoQueryProcessor,
     ICategoryByCodeQueryProcessor categoryByCodeQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.receiptQueryProcessor               = receiptQueryProcessor;
     this.receiptMemoQueryProcessor           = receiptMemoQueryProcessor;
     this.advanceReceivedBackupQueryProcessor = advanceReceivedBackupQueryProcessor;
     this.addReceiptQueryProcessor            = addReceiptQueryProcessor;
     this.addReceiptMemoQueryProcessor        = addReceiptMemoQueryProcessor;
     this.receiptGetByIdQueryProcessor        = receiptGetByIdQueryProcessor;
     this.deleteReceiptByIdQueryProcessor     = deleteReceiptByIdQueryProcessor;
     this.deleteReceiptMemoQueryProcessor     = deleteReceiptMemoQueryProcessor;
     this.categoryByCodeQueryProcessor        = categoryByCodeQueryProcessor;
     this.transactionScopeBuilder             = transactionScopeBuilder;
 }