public ActionResult <string> Put(long id, [FromBody] string value)
        {
            var success = valuesService.Update(id, value);

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