コード例 #1
0
ファイル: TransactionService.cs プロジェクト: Marebor/analyst
 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;
 }
コード例 #2
0
ファイル: FilterService.cs プロジェクト: Marebor/analyst
 public FilterService(IStore <Filter> filterStore, TagService tagService, MessageBus messageBus)
 {
     this.filterStore = filterStore;
     this.tagService  = tagService;
     this.messageBus  = messageBus;
 }