10 lines
184 B
C#
10 lines
184 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SqlSugar
|
|||
|
{
|
|||
|
public interface IParameterInsertable<T>
|
|||
|
{
|
|||
|
int ExecuteCommand();
|
|||
|
Task<int> ExecuteCommandAsync();
|
|||
|
}
|
|||
|
}
|