11 lines
188 B
C#
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);
|
|
}
|
|
} |