server-master/srcs/PhoenixLib.DAL.Abstractions/IGenericAsyncIntRepository.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
413 B
C#

namespace PhoenixLib.DAL
{
/// <summary>
/// IGenericAsyncLongRepository permits to manage specialize an IGenericAsyncRepository for ILongDto objects (which are
/// objects with an long key Id)
/// </summary>
/// <typeparam name="TDto"></typeparam>
public interface IGenericAsyncIntRepository<TDto> : IGenericAsyncRepository<TDto, int>
where TDto : class, IIntDto
{
}
}