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