sumatube/BaseDomain/Repositories/Contracts/IRepoCommand.cs
2025-04-18 17:55:15 -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);
}
}