10 lines
220 B
C#
10 lines
220 B
C#
using Microsoft.Data.Sqlite;
|
|
|
|
namespace BotSharp.Plugin.ExcelHandler.Helpers.Sqlite;
|
|
|
|
public interface ISqliteDbHelpers
|
|
{
|
|
SqliteConnection GetPhysicalDbConnection();
|
|
SqliteConnection GetInMemoryDbConnection();
|
|
}
|