laatzen/LaaProductionWeb/LaaProduction.SQL/Interfaces/ISQLReader.cs
2024-07-17 13:13:41 +02:00

11 lines
174 B
C#

namespace LaaProduction.SQL.Interfaces
{
using System;
public interface ISQLReader
{
T GetValue<T>();
Object GetValue(String column);
}
}