Esempio n. 1
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;
 }
Esempio n. 2
0
 public TaxClassProcessor(
     ITaxClassQueryProcessor taxClassQueryProcessor)
 {
     this.taxClassQueryProcessor = taxClassQueryProcessor;
 }