Esempio n. 1
0
 public TransactionService(
     IStore<Transaction> transactionStore,
     IStore<TransactionsUpload> uploadStore,
     TagService tagService, 
     MessageBus messageBus,
     IStore<TagAssignment> tagAssignmentStore, 
     IStore<TagSuppression> tagSuppressionStore, 
     IStore<Comment> commentStore)
 {
     this.transactionStore = transactionStore;
     this.uploadStore = uploadStore;
     this.tagService = tagService;
     this.messageBus = messageBus;
     this.tagAssignmentStore = tagAssignmentStore;
     this.tagSuppressionStore = tagSuppressionStore;
     this.commentStore = commentStore;
 }
Esempio n. 2
0
 public FilterService(IStore <Filter> filterStore, TagService tagService, MessageBus messageBus)
 {
     this.filterStore = filterStore;
     this.tagService  = tagService;
     this.messageBus  = messageBus;
 }