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