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-02-20 00:23:13 +01:00
|
|
|
|
{
|
2025-03-03 17:40:16 +01:00
|
|
|
|
void With(T command, ConnectionStringParameters parameters = null);
|
2025-02-20 00:23:13 +01:00
|
|
|
|
}
|
2025-02-11 17:07:01 +01:00
|
|
|
|
}
|