Interface IPageFeedbackRepository
Assembly: Volo.CmsKit.Pro.Domain.dll
Syntax
public interface IPageFeedbackRepository : IBasicRepository<PageFeedback, Guid>, IBasicRepository<PageFeedback>, IReadOnlyBasicRepository<PageFeedback, Guid>, IReadOnlyBasicRepository<PageFeedback>, IRepository
Methods
GetCountAsync(string, string, bool?, string, bool?, bool?, bool?, CancellationToken)
Declaration
Task<long> GetCountAsync(string entityType = null, string entityId = null, bool? isUseful = null, string url = null, bool? isHandled = null, bool? hasUserNote = null, bool? hasAdminNote = null, CancellationToken cancellationToken = default)
Parameters
Returns
GetListAsync(string, string, bool?, string, bool?, string, int, int, bool?, bool?, 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, bool? hasUserNote = null, bool? hasAdminNote = null, CancellationToken cancellationToken = default)
Parameters
Returns
Extension Methods