MVCPostall/BaseDomain/Repositories/Contracts/IRepoCommand.cs
2025-01-26 22:22:36 -03:00

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);
}
}