public SessionStorageStrategy(Type type, ILocalDataEventHandler eventHandler)
     : base(type, eventHandler)
 {
 }
 public LocalDataFactoryImpl(ILocalDataEventHandler handler)
 {
     this.handler = handler;
 }
 protected StorageStrategyBase(Type type, ILocalDataEventHandler handler)
 {
     EventHandler = handler ?? new NullLocalDataEventHandler();
     BucketName = type.FullName;
 }
 public ThreadStorageStrategy(Type type, ILocalDataEventHandler eventHandler)
     : base(type, eventHandler)
 {
 }
 public LegacySessionStorageStrategy(Type type, ILocalDataEventHandler handler)
     : base(type, handler)
 {
 }
 public HttpCacheStorageStrategy(Type type, TimeSpan expiration, ILocalDataEventHandler handler)
     : base(type, handler)
 {
     this.expiration = expiration;
 }