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