Show / Hide Table of Contents

Class PageFeedbackAdminAppService

Inheritance
object
ApplicationService
CmsKitProAdminAppService
PageFeedbackAdminAppService
Implements
IAvoidDuplicateCrossCuttingConcerns
IValidationEnabled
IUnitOfWorkEnabled
IAuditingEnabled
IGlobalFeatureCheckingEnabled
ITransientDependency
IPageFeedbackAdminAppService
IReadOnlyAppService<PageFeedbackDto, Guid, GetPageFeedbackListInput>
IReadOnlyAppService<PageFeedbackDto, PageFeedbackDto, Guid, GetPageFeedbackListInput>
IUpdateAppService<PageFeedbackDto, Guid, UpdatePageFeedbackDto>
IDeleteAppService<Guid>
IApplicationService
IRemoteService
Inherited Members
ApplicationService.CheckPolicyAsync(string)
ApplicationService.CreateLocalizer()
ApplicationService.LazyServiceProvider
ApplicationService.ServiceProvider
ApplicationService.CommonPostfixes
ApplicationService.AppliedCrossCuttingConcerns
ApplicationService.UnitOfWorkManager
ApplicationService.AsyncExecuter
ApplicationService.ObjectMapperContext
ApplicationService.ObjectMapper
ApplicationService.GuidGenerator
ApplicationService.LoggerFactory
ApplicationService.CurrentTenant
ApplicationService.DataFilter
ApplicationService.CurrentUser
ApplicationService.SettingProvider
ApplicationService.Clock
ApplicationService.AuthorizationService
ApplicationService.FeatureChecker
ApplicationService.StringLocalizerFactory
ApplicationService.L
ApplicationService.LocalizationResource
ApplicationService.CurrentUnitOfWork
ApplicationService.Logger
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.CmsKit.Admin.PageFeedbacks
Assembly: Volo.CmsKit.Pro.Admin.Application.dll
Syntax
[RequiresFeature(new string[] { "CmsKitPro.PageFeedbackEnable" })]
[RequiresGlobalFeature("CmsKitPro.PageFeedback")]
[Authorize("CmsKit.PageFeedback")]
public class PageFeedbackAdminAppService : CmsKitProAdminAppService, IAvoidDuplicateCrossCuttingConcerns, IValidationEnabled, IUnitOfWorkEnabled, IAuditingEnabled, IGlobalFeatureCheckingEnabled, ITransientDependency, IPageFeedbackAdminAppService, IReadOnlyAppService<PageFeedbackDto, Guid, GetPageFeedbackListInput>, IReadOnlyAppService<PageFeedbackDto, PageFeedbackDto, Guid, GetPageFeedbackListInput>, IUpdateAppService<PageFeedbackDto, Guid, UpdatePageFeedbackDto>, IDeleteAppService<Guid>, IApplicationService, IRemoteService

Constructors

PageFeedbackAdminAppService(IPageFeedbackRepository, IPageFeedbackEntityTypeDefinitionStore, IPageFeedbackSettingRepository, PageFeedbackManager)

Declaration
public PageFeedbackAdminAppService(IPageFeedbackRepository pageFeedbackRepository, IPageFeedbackEntityTypeDefinitionStore entityTypeDefinitionStore, IPageFeedbackSettingRepository pageFeedbackSettingRepository, PageFeedbackManager pageFeedbackManager)
Parameters
Type Name Description
IPageFeedbackRepository pageFeedbackRepository
IPageFeedbackEntityTypeDefinitionStore entityTypeDefinitionStore
IPageFeedbackSettingRepository pageFeedbackSettingRepository
PageFeedbackManager pageFeedbackManager

Properties

EntityTypeDefinitionStore

Declaration
protected IPageFeedbackEntityTypeDefinitionStore EntityTypeDefinitionStore { get; }
Property Value
Type Description
IPageFeedbackEntityTypeDefinitionStore

PageFeedbackManager

Declaration
protected PageFeedbackManager PageFeedbackManager { get; }
Property Value
Type Description
PageFeedbackManager

PageFeedbackRepository

Declaration
protected IPageFeedbackRepository PageFeedbackRepository { get; }
Property Value
Type Description
IPageFeedbackRepository

PageFeedbackSettingRepository

Declaration
protected IPageFeedbackSettingRepository PageFeedbackSettingRepository { get; }
Property Value
Type Description
IPageFeedbackSettingRepository

Methods

DeleteAsync(Guid)

Declaration
[Authorize("CmsKit.PageFeedback.Delete")]
public virtual Task DeleteAsync(Guid id)
Parameters
Type Name Description
Guid id
Returns
Type Description
Task

GetAsync(Guid)

Declaration
public virtual Task<PageFeedbackDto> GetAsync(Guid id)
Parameters
Type Name Description
Guid id
Returns
Type Description
Task<PageFeedbackDto>

GetEntityTypesAsync()

Declaration
public virtual Task<List<string>> GetEntityTypesAsync()
Returns
Type Description
Task<List<string>>

GetExportPageFeedbacksConfig()

Declaration
protected virtual Configuration GetExportPageFeedbacksConfig()
Returns
Type Description
Configuration

GetListAsExcelFileAsync(GetPageFeedbackListAsFileInput)

Declaration
[Authorize("CmsKit.PageFeedback.Export")]
public virtual Task<IRemoteStreamContent> GetListAsExcelFileAsync(GetPageFeedbackListAsFileInput input)
Parameters
Type Name Description
GetPageFeedbackListAsFileInput input
Returns
Type Description
Task<IRemoteStreamContent>

GetListAsync(GetPageFeedbackListInput)

Declaration
public virtual Task<PagedResultDto<PageFeedbackDto>> GetListAsync(GetPageFeedbackListInput input)
Parameters
Type Name Description
GetPageFeedbackListInput input
Returns
Type Description
Task<PagedResultDto<PageFeedbackDto>>

GetSettingsAsync()

Declaration
[Authorize("CmsKit.PageFeedback.Settings")]
public virtual Task<List<PageFeedbackSettingDto>> GetSettingsAsync()
Returns
Type Description
Task<List<PageFeedbackSettingDto>>

UpdateAsync(Guid, UpdatePageFeedbackDto)

Declaration
[Authorize("CmsKit.PageFeedback.Update")]
public virtual Task<PageFeedbackDto> UpdateAsync(Guid id, UpdatePageFeedbackDto dto)
Parameters
Type Name Description
Guid id
UpdatePageFeedbackDto dto
Returns
Type Description
Task<PageFeedbackDto>

UpdateSettingsAsync(UpdatePageFeedbackSettingsInput)

Declaration
[Authorize("CmsKit.PageFeedback.Settings")]
public virtual Task UpdateSettingsAsync(UpdatePageFeedbackSettingsInput input)
Parameters
Type Name Description
UpdatePageFeedbackSettingsInput input
Returns
Type Description
Task

Implements

IAvoidDuplicateCrossCuttingConcerns
IValidationEnabled
IUnitOfWorkEnabled
IAuditingEnabled
IGlobalFeatureCheckingEnabled
ITransientDependency
IPageFeedbackAdminAppService
IReadOnlyAppService<TEntityDto, TKey, TGetListInput>
IReadOnlyAppService<TGetOutputDto, TGetListOutputDto, TKey, TGetListInput>
IUpdateAppService<TGetOutputDto, TKey, TUpdateInput>
IDeleteAppService<TKey>
IApplicationService
IRemoteService

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
AbpOpenIddictQueryableExtensions.SkipIf<T, TQueryable>(TQueryable, bool, int?)
AbpOpenIddictQueryableExtensions.TakeIf<T, TQueryable>(TQueryable, bool, int?)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In this article
Back to top Powered by ABP.IO Platform