Example #1
0
 public InvoiceCommonSettingProcessor(
     IByCompanyGetEntityQueryProcessor <InvoiceCommonSetting> getInvoiceCommonSettingQueryProcessor,
     IAddInvoiceCommonSettingQueryProcessor addInvoiceCommonSettingQueryProcessor,
     IAddCategoryQueryProcessor addCategoryQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.getInvoiceCommonSettingQueryProcessor = getInvoiceCommonSettingQueryProcessor;
     this.addInvoiceCommonSettingQueryProcessor = addInvoiceCommonSettingQueryProcessor;
     this.addCategoryQueryProcessor             = addCategoryQueryProcessor;
     this.transactionScopeBuilder = transactionScopeBuilder;
 }
Example #2
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;
 }