Example #1
0
 internal RequestHandler(IWeighting weighting, IEventStore eventstore)
 {
     this.weighting = weighting;
     this.repo      = new SprintRepository(eventstore);
 }
Example #2
0
 public RequestHandler(IWeighting weighting) : this(weighting, new FilesystemEventStore())
 {
 }