private async Task <Report> ReportRemarkAsync(Guid remarkId, string userId)
        {
            if (await _remarkRepository.ExistsAsync(remarkId) == false)
            {
                throw new ServiceException(OperationCodes.RemarkNotFound,
                                           $"Remark with id: '{remarkId}' does not exist!");
            }

            return(new Report(remarkId, null, "remark", userId));
        }