namespace Common.Logic.Extensions.SQL.Interfaces { using System; using System.Xml; public interface ISQLReader { XmlReader GetXml(Int32 index); T GetValue(Int32 index); } }