laatzen/LaaProductionWeb/LaaProduction.SQL/Interfaces/ISQLReader.cs
2024-04-15 11:17:19 +02:00

11 lines
174 B
C#

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