femto-backend/Femto.Modules.Blog/Infrastructure/DbConnection/IDbConnectionFactory.cs
2025-05-03 15:38:57 +02:00

9 lines
No EOL
187 B
C#

using System.Data;
using Microsoft.Data.SqlClient;
namespace Femto.Modules.Blog.Infrastructure.DbConnection;
public interface IDbConnectionFactory
{
IDbConnection GetConnection();
}