Show / Hide Table of Contents

Interface IReadOnlyAppService<TGetOutputDto, TGetListOutputDto, TKey, TGetListInput>

Namespace: Volo.Abp.Application.Services
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
Type Description
Task<PagedResultDto<TGetListOutputDto>>

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft