common/Logic/Common.Logic.Extensions.SQL/Interfaces/ISQLReader.cs

12 lines
216 B
C#
Raw Normal View History

2026-04-23 15:50:07 +00:00
namespace Common.Logic.Extensions.SQL.Interfaces
{
using System;
using System.Xml;
public interface ISQLReader
{
XmlReader GetXml(Int32 index);
T GetValue<T>(Int32 index);
}
}