// POST: api/Cliente
 public void Post([FromBody] Cliente value)
 {
     repositorioCliente.InsertarNuevo(value);
 }