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