namespace LaaProduction.SQL.Interfaces { using System; public interface ISQLReader { bool GetBool(); byte[] GetBytes(); DateTime GetDate(); int GetInt(); long GetLong(); short GetSmallint(); string GetString(); T GetValue(); object GetValue(string column); } }