12 lines
216 B
C#
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);
|
|||
|
|
}
|
|||
|
|
}
|