Esempio n. 1
0
 public RulesEvaluator(
     ICachedEvaluatorFactory cachedEvaluatorFactory,
     IRuleRepository ruleRepository,
     ITransactionCategoryService transactionCategoryService)
 {
     this.cachedEvaluatorFactory     = cachedEvaluatorFactory;
     this.ruleRepository             = ruleRepository;
     this.transactionCategoryService = transactionCategoryService;
 }
Esempio n. 2
0
 public TransactionCategoriesController(ITransactionCategoryService transactionCategoryService)
 {
     _transactionCategoryService = transactionCategoryService;
 }
Esempio n. 3
0
 public TransactionCategoryController(ITransactionCategoryService transactionCategoryService)
 {
     this.transactionCategoryService = transactionCategoryService;
 }