public IActionResult Put([FromBody] Evento evento) { EventoBLL eventoBLL = new EventoBLL(); eventoBLL.Put(evento); return(Json(evento)); }