Interface IReadOnlyAppService<TGetOutputDto, TGetListOutputDto, TKey, TGetListInput>
Assembly: Volo.Abp.Ddd.Application.Contracts.dll
Syntax
public interface IReadOnlyAppService<TGetOutputDto, TGetListOutputDto, in TKey, in TGetListInput> : IApplicationService, IRemoteService
Type Parameters
| Name |
Description |
| TGetOutputDto |
|
| TGetListOutputDto |
|
| TKey |
|
| TGetListInput |
|
Methods
GetAsync(TKey)
Declaration
Task<TGetOutputDto> GetAsync(TKey id)
Parameters
| Type |
Name |
Description |
| TKey |
id |
|
Returns
| Type |
Description |
| Task<TGetOutputDto> |
|
GetListAsync(TGetListInput)
Declaration
Task<PagedResultDto<TGetListOutputDto>> GetListAsync(TGetListInput input)
Parameters
| Type |
Name |
Description |
| TGetListInput |
input |
|
Returns
Extension Methods