public async Task <IActionResult> GetDestinationPointCatalogAsync(string fileName, string documentId)
        {
            var retValue = await _destinationService.GetDestinationCatalog(HttpUtility.UrlDecode(fileName), HttpUtility.UrlDecode(documentId));

            return(Ok(retValue));
        }