public void Put(int id, [FromBody] WashingPipe value)
 {
     var washingPipe = service.Put <WashingPipeValidator>(value);
 }
 public void Post([FromBody] WashingPipe value)
 {
     var washingPipe = service.Post <WashingPipeValidator>(value);
 }