laatzen/LaaProductionWeb/LaaProduction.SQL/Interfaces/ISQLReader.cs
2024-03-06 12:48:08 +01:00

25 lines
363 B
C#

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