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