Interface IUpdateAppService<TGetOutputDto, TKey, TUpdateInput>
Assembly: Volo.Abp.Ddd.Application.Contracts.dll
Syntax
public interface IUpdateAppService<TGetOutputDto, in TKey, in TUpdateInput> : IApplicationService, IRemoteService
Type Parameters
Name |
Description |
TGetOutputDto |
|
TKey |
|
TUpdateInput |
|
Methods
UpdateAsync(TKey, TUpdateInput)
Declaration
Task<TGetOutputDto> UpdateAsync(TKey id, TUpdateInput input)
Parameters
Type |
Name |
Description |
TKey |
id |
|
TUpdateInput |
input |
|
Returns
Type |
Description |
Task<TGetOutputDto> |
|
Extension Methods