コード例 #1
0
 public GeneralSettingReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     IMasterGetByCodesQueryProcessor <GeneralSetting> masterGetByCodesQueryProcessor
     )
 {
     this.companyQueryProcessor          = companyQueryProcessor;
     this.masterGetByCodesQueryProcessor = masterGetByCodesQueryProcessor;
 }
コード例 #2
0
 public GeneralSettingProcessor(
     IMasterGetByCodesQueryProcessor <GeneralSetting> masterGetByCodesQueryProcessor,
     IUpdateGeneralSettingQueryProcessor updateGeneralSettingQueryProcessor
     )
 {
     this.masterGetByCodesQueryProcessor     = masterGetByCodesQueryProcessor;
     this.updateGeneralSettingQueryProcessor = updateGeneralSettingQueryProcessor;
 }
コード例 #3
0
 public PaymentAgencyProcessor(
     IIdenticalEntityGetByIdsQueryProcessor <PaymentAgency> paymentAgencyGetByIdsQueryProcessor,
     IMasterGetByCodesQueryProcessor <PaymentAgency> masterGetByCodesQueryProcessor,
     IAddPaymentAgencyQueryProcessor addPaymentAgencyQueryProcessor,
     IDeleteIdenticalEntityQueryProcessor <PaymentAgency> deletePaymentAgencyQueryProcessor
     )
 {
     this.paymentAgencyGetByIdsQueryProcessor = paymentAgencyGetByIdsQueryProcessor;
     this.masterGetByCodesQueryProcessor      = masterGetByCodesQueryProcessor;
     this.addPaymentAgencyQueryProcessor      = addPaymentAgencyQueryProcessor;
     this.deletePaymentAgencyQueryProcessor   = deletePaymentAgencyQueryProcessor;
 }
コード例 #4
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;
 }
コード例 #5
0
ファイル: CustomerFeeProcessor.cs プロジェクト: fwka1605/next
 public CustomerFeeProcessor(
     ICustomerFeeQueryProcessor customerFeeQueryProcessor,
     IAddCustomerFeeQueryProcessor addCustomerFeeQueryProcessor,
     IDeleteCustomerFeeQueryProcessor deleteCustomerFeeQueryProcessor,
     IMasterGetByCodesQueryProcessor <Currency> currencyGetByCodesQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlByCompanyIdQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.customerFeeQueryProcessor                   = customerFeeQueryProcessor;
     this.addCustomerFeeQueryProcessor                = addCustomerFeeQueryProcessor;
     this.deleteCustomerFeeQueryProcessor             = deleteCustomerFeeQueryProcessor;
     this.currencyGetByCodesQueryProcessor            = currencyGetByCodesQueryProcessor;
     this.applicationControlByCompanyIdQueryProcessor = applicationControlByCompanyIdQueryProcessor;
     this.transactionScopeBuilder = transactionScopeBuilder;
 }
コード例 #6
0
 public AccountTitleProcessor(
     IDeleteIdenticalEntityQueryProcessor <AccountTitle> deleteIdenticalEntityQueryProcessor,
     IAccountTitleQueryProcessor accountTitleQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <AccountTitle> identicalEntityGetByIdsQueryProcessor,
     IAddAccountTitleQueryProcessor addAccountTitleQueryProcessor,
     IAccountTitleForImportQueryProcessor accountTitleForImportQueryProcessor,
     IMasterGetByCodesQueryProcessor <AccountTitle> masterGetByCodesQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.deleteIdenticalEntityQueryProcessor   = deleteIdenticalEntityQueryProcessor;
     this.accountTitleQueryProcessor            = accountTitleQueryProcessor;
     this.identicalEntityGetByIdsQueryProcessor = identicalEntityGetByIdsQueryProcessor;
     this.addAccountTitleQueryProcessor         = addAccountTitleQueryProcessor;
     this.accountTitleForImportQueryProcessor   = accountTitleForImportQueryProcessor;
     this.masterGetByCodesQueryProcessor        = masterGetByCodesQueryProcessor;
     this.transactionScopeBuilder = transactionScopeBuilder;
 }
コード例 #7
0
ファイル: CurrencyProcessor.cs プロジェクト: fwka1605/next
 public CurrencyProcessor(
     ICurrencyQueryProcessor currencyQueryProcessor,
     IAddCurrencyQueryProcessor addCurrencyQueryProcessor,
     IMasterGetItemsQueryProcessor <Currency> masterGetItemsQueryProcessor,
     IDeleteIdenticalEntityQueryProcessor <Currency> deleteIdenticalEntityQueryProcessor,
     IMasterGetByCodesQueryProcessor <Currency> masterGetByCodesQueryProcessor,
     IIdenticalEntityGetByIdsQueryProcessor <Currency> identicalEntityGetByIdsQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.currencyQueryProcessor                = currencyQueryProcessor;
     this.addCurrencyQueryProcessor             = addCurrencyQueryProcessor;
     this.masterGetItemsQueryProcessor          = masterGetItemsQueryProcessor;
     this.deleteIdenticalEntityQueryProcessor   = deleteIdenticalEntityQueryProcessor;
     this.masterGetByCodesQueryProcessor        = masterGetByCodesQueryProcessor;
     this.identicalEntityGetByIdsQueryProcessor = identicalEntityGetByIdsQueryProcessor;
     this.transactionScopeBuilder               = transactionScopeBuilder;
 }
コード例 #8
0
 public AccountTransferProcessor(
     IAccountTransferDetailQueryProcessor accountTransferDetailQueryProcessor,
     IAccountTransferLogQueryProcessor accountTransferLogQueryProcessor,
     IAddAccountTransferLogQueryProcessor addAccountTransferLogQueryProcessor,
     IAddAccountTransferDetailQueryProcessor addAccountTransferDetailQueryProcessor,
     IDeleteTransactionQueryProcessor <AccountTransferLog> deleteAccountTransferLogQueryProcessor,
     IDeleteAccountTransferDetailQueryProcessor deleteAccountTransferDetailQueryProcessor,
     IUpdateBillingAccountTransferLogQueryProcessor updateBillingAccountTransferLogQueryProcessor,
     IMasterGetByCodesQueryProcessor <Currency> currencyGetByIdQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.accountTransferDetailQueryProcessor           = accountTransferDetailQueryProcessor;
     this.accountTransferLogQueryProcessor              = accountTransferLogQueryProcessor;
     this.addAccountTransferLogQueryProcessor           = addAccountTransferLogQueryProcessor;
     this.addAccountTransferDetailQueryProcessor        = addAccountTransferDetailQueryProcessor;
     this.deleteAccountTransferLogQueryProcessor        = deleteAccountTransferLogQueryProcessor;
     this.deleteAccountTransferDetailQueryProcessor     = deleteAccountTransferDetailQueryProcessor;
     this.updateBillingAccountTransferLogQueryProcessor = updateBillingAccountTransferLogQueryProcessor;
     this.currencyGetByIdQueryProcessor = currencyGetByIdQueryProcessor;
     this.transactionScopeBuilder       = transactionScopeBuilder;
 }