namespace LaaProduction.Data.SQL.Interfaces { using System; public interface ISQLReader { T GetValue(Int32 index); T GetValue(String column); } }