// WingsEmu
//
// Developed by NosWings Team
namespace PhoenixLib.DAL
{
///
/// IGenericAsyncLongRepository permits to manage specialize an IGenericAsyncRepository for ILongDto objects (which are
/// objects with an long key Id)
///
///
public interface IGenericAsyncLongRepository : IGenericAsyncRepository
where TDto : class, ILongDto
{
}
}