public AzureSystemEventStore()
        {
            Streamer = new EventStreamer(new EventSerializer(MessagesProvider.GetKnownEventTypes()));
            CloudStorageAccount storageAccount = CloudStorageAccount.Parse(Config.Config.Get("Eventing.AzureConnectionString"));

            blobClient = storageAccount.CreateCloudBlobClient();
            container  = blobClient.GetContainerReference(Config.Config.Get("Eventing.AzureContainerName"));
            container.CreateIfNotExist();
        }
        public FileSystemEventStore(string basePath)
        {
            BasePath = basePath;

            Streamer = new EventStreamer(new EventSerializer(MessagesProvider.GetKnownEventTypes()));
        }