public ActionResult <string> Get(long id)
        {
            object value   = null;
            var    success = valuesService.Retrieve(id, out value);

            if (success)
            {
                return(Ok(value));
            }
            return(NotFound("ID '" + id + "' Not Found"));
        }