PlanTempusApp/Database/Core/ConnectionFactory/IDbConnectionFactory.cs

9 lines
213 B
C#
Raw Normal View History

2025-02-21 17:03:49 +01:00
namespace PlanTempus.Database.Core.ConnectionFactory
{
public interface IDbConnectionFactory
{
System.Data.IDbConnection Create();
System.Data.IDbConnection Create(string username, string password);
}
}