// POST api/tank
 public string Post([FromBody] Tank value)
 {
     return(_tankService.Add(value));
 }