9 lines
154 B
C#
9 lines
154 B
C#
namespace Common.Logic.Extensions.SQL.Interfaces
|
|
{
|
|
using System;
|
|
|
|
public interface ISQLReader
|
|
{
|
|
T GetValue<T>(Int32 index);
|
|
}
|
|
} |