Exemplo n.º 1
0
        public TalkPersistence(IBlogStorageConfig blobStorageConfig, MediaCache cache)
        {
            var storageAccount = CloudStorageAccount.Parse(blobStorageConfig.BlobStorageConnectionString);

            cloudBlobClient = storageAccount.CreateCloudBlobClient();
            this.cache      = cache;
        }
Exemplo n.º 2
0
        public SpeakerMetadataService(IBlogStorageConfig blobStorageConfig, IEnumerable <Conference> conferences)
        {
            var storageAccount = CloudStorageAccount.Parse(blobStorageConfig.BlobStorageConnectionString);

            cloudBlobClient  = storageAccount.CreateCloudBlobClient();
            this.conferences = conferences;
        }
Exemplo n.º 3
0
        public ConferenceConfiguration(IBlogStorageConfig blobStorageConfig)
        {
            var storageAccount = CloudStorageAccount.Parse(blobStorageConfig.BlobStorageConnectionString);

            cloudBlobClient = storageAccount.CreateCloudBlobClient();
        }
Exemplo n.º 4
0
 public ThumbnailPersistence(IBlogStorageConfig blobStorageConfig, MediaCache cache)
     : base(blobStorageConfig, cache)
 {
 }
Exemplo n.º 5
0
 public ConferencePersistence(IBlogStorageConfig blobStorageConfig, MediaCache cache)
     : base(blobStorageConfig, cache)
 {
 }