laatzen/LaaProductionWeb/LaaProductionWeb.Data/Interfaces/ISqlReader.cs
Stoyan Zlatev cf9dfe1915 Production Approvals,
sql client refactoring
2023-04-14 16:45:41 +02:00

11 lines
217 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);
}
}