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