12 lines
No EOL
413 B
C#
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
|
|
{
|
|
}
|
|
} |