CQRS_Simple/CQRS_Simple.Infrastructure/Dapper/ISqlConnectionFactory.cs
2022-04-07 14:00:58 +08:00

9 lines
161 B
C#

using System.Data;
namespace CQRS_Simple.Infrastructure
{
public interface ISqlConnectionFactory
{
IDbConnection GetOpenConnection();
}
}