Files
laatzen/LaaProductionWeb/LaaProduction.Data.SQL/Interfaces/ISQLReader.cs
T

11 lines
188 B
C#

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