Exemplo n.º 1
0
 public DailyTaskAggregate(IEnumerable <IEvent> events, UserGoalIndex goalService)
 {
     _state           = new DailyTaskState(events);
     this.goalService = goalService;
 }
Exemplo n.º 2
0
 public DailyTaskApplicationService(IEventStore eventStore, UserGoalIndex goalService)
 {
     this._eventStore = eventStore;
     this.goalService = goalService;
 }