public Repository(IAggrigateStore aggregateStore, ISnapshotStore snapshotStore)
 {
     this.aggregateStore = aggregateStore;
     this.snapshotStore  = snapshotStore;
 }
 public ApplicationService(IAggrigateStore store)
 {
     aggrigateStore = store;
 }
Exemple #3
0
 public ApplicationService(IAggrigateStore aggrigateStore)
 {
     this.aggrigateStore = aggrigateStore;
 }