IRepositoryOfTEntity.cs 404 B

12345678910111213
  1. using Abp.Domain.Entities;
  2. namespace Abp.Domain.Repositories
  3. {
  4. /// <summary>
  5. /// A shortcut of <see cref="IRepository{TEntity,TPrimaryKey}"/> for most used primary key type (<see cref="int"/>).
  6. /// </summary>
  7. /// <typeparam name="TEntity">Entity type</typeparam>
  8. public interface IRepository<TEntity> : IRepository<TEntity, int> where TEntity : class, IEntity<int>
  9. {
  10. }
  11. }