9 lines
No EOL
187 B
C#
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();
|
|
} |