mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 17:47:22 +00:00
14 lines
315 B
C#
14 lines
315 B
C#
using System.Data.Common;
|
|
using Infrastructure.Sql;
|
|
|
|
namespace Features.UserManagement.Tests.Repository;
|
|
|
|
internal class TestConnectionFactory(DbConnection conn) : ISqlConnectionFactory
|
|
{
|
|
private readonly DbConnection _conn = conn;
|
|
|
|
public DbConnection CreateConnection()
|
|
{
|
|
return _conn;
|
|
}
|
|
} |