PlanTempusApp/PlanTempus.Core/Database/ConnectionFactory/IDbConnectionFactory.cs

9 lines
242 B
C#
Raw Permalink Normal View History

2025-03-10 15:56:22 +01:00
namespace PlanTempus.Core.Database.ConnectionFactory
2025-03-03 17:40:16 +01:00
{
public interface IDbConnectionFactory
{
System.Data.IDbConnection Create();
System.Data.IDbConnection Create(ConnectionStringParameters connectionStringTemplateParameters);
}
}