laatzen/Common/Logic/Common.Logic.Extensions.SQL/Interfaces/ISQLReader.cs
2024-10-17 10:06:36 +02:00

12 lines
216 B
C#

namespace Common.Logic.Extensions.SQL.Interfaces
{
using System;
using System.Xml;
public interface ISQLReader
{
XmlReader GetXml(Int32 index);
T GetValue<T>(Int32 index);
}
}