mysimulation/server/FSO.Server.Database/DA/ISqlContext.cs

12 lines
203 B
C#
Raw Permalink Normal View History

using System;
using System.Data.Common;
namespace FSO.Server.Database.DA
{
public interface ISqlContext : IDisposable
{
DbConnection Connection { get; }
void Flush();
}
}