mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 18:14:01 +00:00
9 lines
149 B
C#
9 lines
149 B
C#
using System.Data.Common;
|
|
|
|
namespace Infrastructure.Repository.Sql;
|
|
|
|
public interface ISqlConnectionFactory
|
|
{
|
|
DbConnection CreateConnection();
|
|
}
|