Files
the-biergarten-app/web/backend/Infrastructure/Infrastructure.Repository/Sql/ISqlConnectionFactory.cs
2026-04-27 18:47:39 -04:00

9 lines
149 B
C#

using System.Data.Common;
namespace Infrastructure.Repository.Sql;
public interface ISqlConnectionFactory
{
DbConnection CreateConnection();
}