public EventStoreSubscription(IEventStoreConnection conn, EventStoreOptions options, EventDeserializer eventDeserializer, IEventStoreProjections projections)
 {
     _conn              = conn;
     _options           = options;
     _eventDeserializer = eventDeserializer;
     _projections       = projections;
 }
 public EventStoreProjectionsClient(EventStoreOptions options)
 {
     _logger  = new ConsoleLogger();
     _options = options;
 }