Show / Hide Table of Contents

Interface IPageFeedbackRepository

Namespace: Volo.CmsKit.PageFeedbacks
Assembly: Volo.CmsKit.Pro.Domain.dll
Syntax
public interface IPageFeedbackRepository : IBasicRepository<PageFeedback, Guid>, IBasicRepository<PageFeedback>, IReadOnlyBasicRepository<PageFeedback>, IRepository, IReadOnlyBasicRepository<PageFeedback, Guid>

Methods

GetCountAsync(string, string, bool?, string, bool?, CancellationToken)

Declaration
Task<long> GetCountAsync(string entityType = null, string entityId = null, bool? isUseful = null, string url = null, bool? isHandled = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string entityType
string entityId
bool? isUseful
string url
bool? isHandled
CancellationToken cancellationToken
Returns
Type Description
Task<long>

GetListAsync(string, string, bool?, string, bool?, string, int, int, CancellationToken)

Declaration
Task<List<PageFeedback>> GetListAsync(string entityType = null, string entityId = null, bool? isUseful = null, string url = null, bool? isHandled = null, string sorting = null, int skipCount = 0, int maxResultCount = 2147483647, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string entityType
string entityId
bool? isUseful
string url
bool? isHandled
string sorting
int skipCount
int maxResultCount
CancellationToken cancellationToken
Returns
Type Description
Task<List<PageFeedback>>
In this article
Back to top Powered by Volosoft