// POST api/values
 public void Post([FromBody] string value)
 {
     valueService.SetValue(value);
 }