12 lines
232 B
C#
12 lines
232 B
C#
using System.Data;
|
|
using Npgsql;
|
|
|
|
namespace MieSystem.Data.Interfaces
|
|
{
|
|
public interface IDatabaseConnectionFactory
|
|
{
|
|
Task<IDbConnection> CreateConnectionAsync();
|
|
IDbConnection CreateConnection();
|
|
}
|
|
}
|