Files
laatzen/LaaProductionWeb/LaaProductionWeb.Data/Interfaces/ISqlReader.cs
T

13 lines
257 B
C#

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