public IActionResult GetUserLocations()
        {
            try
            {
                var currentUser = _remarkService.GetUserRemarks();

                return(this.Ok(new { location = currentUser }));
            }
            catch (AppException ex)
            {
                logger.Error(ex);
                return(BadRequest("Unable to process your request."));
            }
        }