laatzen/LaaProductionWeb/LaaProductionWeb.Data/Interfaces/ISqlReader.cs
2023-05-11 11:25:32 +02:00

17 lines
338 B
C#

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<T>(int index = -1);
object GetValue(string field);
}
}