2025-02-20 00:23:13 +01:00
|
|
|
|
namespace PlanTempus.Database.Core
|
2025-02-11 17:07:01 +01:00
|
|
|
|
{
|
2025-02-20 00:23:13 +01:00
|
|
|
|
public interface IDbConfigure<T>
|
|
|
|
|
|
{
|
2025-02-21 23:34:06 +01:00
|
|
|
|
void With(T command, ConnectionFactory.ConnectionStringParameters parameters = null);
|
2025-02-20 00:23:13 +01:00
|
|
|
|
}
|
2025-02-11 17:07:01 +01:00
|
|
|
|
}
|