9 lines
201 B
C#
9 lines
201 B
C#
using SWP.Core.Database.ConnectionFactory;
|
|
|
|
namespace SWP.Core.Database
|
|
{
|
|
public interface IDbConfigure<T>
|
|
{
|
|
void With(T command, ConnectionStringParameters parameters = null);
|
|
}
|
|
}
|