Browse Source

Remove base call from MapToGetListOutputDtoAsync method.

Resolve #5856
pull/5863/head
maliming 6 years ago
committed by GitHub
parent
commit
b9a1762551
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/CrudAppService.cs

2
framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/CrudAppService.cs

@ -57,7 +57,7 @@ namespace Volo.Abp.Application.Services
protected override Task<TEntityDto> MapToGetListOutputDtoAsync(TEntity entity)
{
return base.MapToGetOutputDtoAsync(entity);
return MapToGetOutputDtoAsync(entity);
}
protected override TEntityDto MapToGetListOutputDto(TEntity entity)

Loading…
Cancel
Save