Browse Source
Fix inconsistent generic constraints in AsyncCrudAppService
See #964
pull/965/head
Enes Sadık Özbek
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
2 deletions
-
framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AsyncCrudAppService.cs
|
|
|
@ -34,10 +34,8 @@ namespace Volo.Abp.Application.Services |
|
|
|
|
|
|
|
public abstract class AsyncCrudAppService<TEntity, TEntityDto, TKey, TGetAllInput, TCreateInput> |
|
|
|
: AsyncCrudAppService<TEntity, TEntityDto, TKey, TGetAllInput, TCreateInput, TCreateInput> |
|
|
|
where TGetAllInput : IPagedAndSortedResultRequest |
|
|
|
where TEntity : class, IEntity<TKey> |
|
|
|
where TEntityDto : IEntityDto<TKey> |
|
|
|
where TCreateInput : IEntityDto<TKey> |
|
|
|
{ |
|
|
|
protected AsyncCrudAppService(IRepository<TEntity, TKey> repository) |
|
|
|
: base(repository) |
|
|
|
|