9 lines
178 B
C#
9 lines
178 B
C#
using Microsoft.Data.Sqlite;
|
|
|
|
namespace GSMParser.Inferfaces
|
|
{
|
|
public interface IGsmSqliteDBConnection
|
|
{
|
|
void SetDatabaseInstance(SqliteConnection db);
|
|
}
|
|
} |