namespace LaaProductionWeb.Data.Interfaces { public interface ISqlReader { byte[] GetBytes(int index = -1); int GetInt(int index = -1); short GetSmallint(int index = -1); string GetString(int index = -1); T GetValue(int index = -1); object GetValue(string field); } }