Exemple #1
0
 private static IEffectiveAuthorizationTimelineFactory GetEffectiveAuthorizationTimelineFactory(IReadRawEventStorage eventStore,
                                                                                                IEffectiveAuthorizationHandlerFactory eventHandlerFactory)
 {
     return(new EffectiveAuthorizationTimelineFactory(eventStore, eventHandlerFactory));
 }
Exemple #2
0
 public EffectiveAuthorizationTimelineFactory(IReadRawEventStorage eventStore,
                                              IEffectiveAuthorizationHandlerFactory eventHandlerFactory)
 {
     this.eventStore          = eventStore;
     this.eventHandlerFactory = eventHandlerFactory;
 }