// /** // * File: IStorageContainer.cs // * Author: haraldwolff // * // * This file and it's content is copyrighted by the Author and / or copyright holder. // * Any use wihtout proper permission is illegal and may lead to legal actions. // * // * // **/ using System; using System.Collections.Generic; namespace ln.types.odb.ng.storage { public interface IStorageContainer : IDisposable { IStorageContainer Open(); void Close(); bool IsOpen { get; } IStorage GetStorage(string storageName); IEnumerable GetStorageNames(); } }