16 lines
No EOL
466 B
C#
16 lines
No EOL
466 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
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 IGenericAsyncLongRepository<TDto> : IGenericAsyncRepository<TDto, long>
|
|
where TDto : class, ILongDto
|
|
{
|
|
}
|
|
} |