Example #1
0
 public CommandHandlers(IBus bus, ITodoListAggregateRepository repository)
 {
     _bus        = bus;
     _repository = repository;
 }
Example #2
0
 public CreateTodoListSaga(IBus bus, ITodoListAggregateRepository todoListAggregateRepository)
 {
     _bus = bus;
     _todoListAggregateRepository = todoListAggregateRepository;
 }