SQl client refactored
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
namespace LaaProductionWeb.Data.Interfaces
|
||||
{
|
||||
using System;
|
||||
|
||||
public interface IFluentSQLReader
|
||||
{
|
||||
bool GetBool();
|
||||
|
||||
byte[] GetBytes();
|
||||
|
||||
DateTime GetDate();
|
||||
|
||||
int GetInt();
|
||||
|
||||
long GetLong();
|
||||
|
||||
short GetSmallint();
|
||||
|
||||
string GetString();
|
||||
|
||||
T GetValue<T>();
|
||||
|
||||
object GetValue(string column);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user