public ActionResult <string> Delete(long id)
        {
            var success = valuesService.Delete(id);

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