PlanTempusApp/PlanTempus.Database/Core/IDbConfigure.cs

10 lines
215 B
C#
Raw Permalink Normal View History

2025-03-10 15:56:22 +01:00
using PlanTempus.Core.Database.ConnectionFactory;
2025-03-03 17:40:16 +01:00
namespace PlanTempus.Database.Core
2025-02-11 17:07:01 +01:00
{
2025-03-03 17:40:16 +01:00
public interface IDbConfigure<T>
{
2025-03-03 17:40:16 +01:00
void With(T command, ConnectionStringParameters parameters = null);
}
2025-02-11 17:07:01 +01:00
}