generated from ricardo/MVCLogin
11 lines
262 B
C#
11 lines
262 B
C#
namespace DIC.Test.Data.Contracts
|
|
{
|
|
public interface IRepoCommand<T, TId> where T : class
|
|
where TId : struct
|
|
{
|
|
void Add(T entity);
|
|
void Update(T entity);
|
|
void Delete(T entity);
|
|
}
|
|
}
|