mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 18:14:01 +00:00
12 lines
303 B
C#
12 lines
303 B
C#
using System.Data.Common;
|
|
using Infrastructure.Repository.Sql;
|
|
|
|
namespace Infrastructure.Repository.Tests.Database;
|
|
|
|
internal class TestConnectionFactory(DbConnection conn) : ISqlConnectionFactory
|
|
{
|
|
private readonly DbConnection _conn = conn;
|
|
|
|
public DbConnection CreateConnection() => _conn;
|
|
}
|