public IActionResult GetReportUsers(string reportGUID)
        {
            try
            {
                if (string.IsNullOrEmpty(reportGUID))
                {
                    throw new BasicException("Empty GUID!");
                }

                return(Ok(_manager.GetReportUsers(reportGUID)));
            }
            catch (BasicException ex)
            {
                _logger.LogError(ex.Message);
                return(BadRequest(ex.Message));
            }
            catch (NotFoundException ex)
            {
                _logger.LogError(ex.Message);
                return(NotFound(ex.Message));
            }
            catch (PermissionException ex)
            {
                _logger.LogError(ex.Message);
                return(Unauthorized());
            }
            catch (Exception ex)
            {
                _logger.LogError(ex.Message);
                return(BadRequest());
            }
        }