API.DataAccess.StorageManager.StorageManager C# (CSharp) 메소드

StorageManager() 공개 메소드

public StorageManager ( AppSettings appSettings ) : API.Models
appSettings AppSettings
리턴 API.Models
        public StorageManager(AppSettings appSettings)
        {
            _connectionString = appSettings.BlobStorageConnectionString;
            _containerName = appSettings.BlobContainerName;
            _staticDataKey = appSettings.StaticDataKey;
            _platformTagsKey = appSettings.PlatformTagsKey;
            _scheduleKey = appSettings.SchedulesKey;
        }