SQl client refactored

This commit is contained in:
Stoyan Zlatev
2023-06-06 10:02:04 +02:00
parent 5c42eee949
commit f0155aeb95
28 changed files with 1104 additions and 1378 deletions
@@ -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);
}
}