mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
18 lines
357 B
C#
18 lines
357 B
C#
using System.Data;
|
|
|
|
namespace Cicm.Database
|
|
{
|
|
public partial class Operations
|
|
{
|
|
const int DB_VERSION = 2;
|
|
|
|
readonly IDbConnection dbCon;
|
|
readonly IDbCore dbCore;
|
|
|
|
public Operations(IDbConnection connection, IDbCore core)
|
|
{
|
|
dbCon = connection;
|
|
dbCore = core;
|
|
}
|
|
}
|
|
} |