laatzen/LaaProductionWeb/LaaProductionWeb.Data/Interfaces/ISqlReader.cs
2023-05-17 14:57:05 +02:00

25 lines
474 B
C#

using System;
namespace LaaProductionWeb.Data.Interfaces
{
public interface ISqlReader
{
bool GetBool(int index = -1);
byte[] GetBytes(int index = -1);
DateTime GetDate(int index = -1);
int GetInt(int index = -1);
long GetLong(int index = -1);
short GetSmallint(int index = -1);
string GetString(int index = -1);
T GetValue<T>(int index = -1);
object GetValue(string field);
}
}