25 lines
363 B
C#
25 lines
363 B
C#
namespace LaaProduction.SQL.Interfaces
|
|
{
|
|
using System;
|
|
|
|
public interface ISQLReader
|
|
{
|
|
bool GetBool();
|
|
|
|
byte[] GetBytes();
|
|
|
|
DateTime GetDate();
|
|
|
|
int GetInt();
|
|
|
|
long GetLong();
|
|
|
|
short GetSmallint();
|
|
|
|
string GetString();
|
|
|
|
T GetValue<T>();
|
|
|
|
object GetValue(string column);
|
|
}
|
|
} |