SWPCore/Database/Core/IDbConfigure.cs

10 lines
215 B
C#
Raw Normal View History

using PlanTempus.Core.Database.ConnectionFactory;
namespace PlanTempus.Database.Core
{
public interface IDbConfigure<T>
{
void With(T command, ConnectionStringParameters parameters = null);
}
}