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

11 lines
381 B
C#

using System.Runtime.InteropServices;
namespace DIC.Test.Data.Contracts
{
public interface IRepository<T, TId> : IRepoCommand<T, TId>, IRepoQuery<T, TId>
where T : class
where TId : struct
{
}
}