public async Task <PagedResults <Question> > GetAllByFeedbackTypeAsync(
     PagingOptions pagingOptions,
     SortOptions <Question, QuestionEntity> sortOptions,
     SearchOptions <Question, QuestionEntity> searchOptions,
     string feedbackType,
     CancellationToken ct)
 {
     return(await _feedbackService.GetAllByFeedbackTypeAsync(pagingOptions, sortOptions, searchOptions, feedbackType, ct));
 }