mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 02:39:03 +00:00
10 lines
276 B
C#
10 lines
276 B
C#
using System.Data.Common;
|
|
using DataAccessLayer.Sql;
|
|
|
|
namespace Repository.Tests.Database;
|
|
|
|
internal class TestConnectionFactory(DbConnection conn) : ISqlConnectionFactory
|
|
{
|
|
private readonly DbConnection _conn = conn;
|
|
public DbConnection CreateConnection() => _conn;
|
|
} |