using System.Collections.Generic; using System.IO; namespace Trash.Config { public interface IConfigurationLoader where T : BaseConfiguration { IEnumerable Load(string propertyName, string configSection); IEnumerable LoadFromStream(TextReader stream, string configSection); IEnumerable LoadMany(IEnumerable configFiles, string configSection); } }