| 12345678910111213 |
- using Abp.Domain.Entities;
- namespace Abp.Domain.Repositories
- {
- /// <summary>
- /// A shortcut of <see cref="IRepository{TEntity,TPrimaryKey}"/> for most used primary key type (<see cref="int"/>).
- /// </summary>
- /// <typeparam name="TEntity">Entity type</typeparam>
- public interface IRepository<TEntity> : IRepository<TEntity, int> where TEntity : class, IEntity<int>
- {
- }
- }
|