public async Task <ActionResult <data.MetodoPago> > PostMetodoPago(data.MetodoPago MetodoPago) { new Proyecto.BS.MetodoPago(_context).Insert(MetodoPago); int _id = MetodoPago.idMetodoPago.Value; return(MetodoPago); }
public async Task <IActionResult> PutMetodoPago(int id, data.MetodoPago MetodoPago) { if (id != MetodoPago.idMetodoPago) { return(BadRequest()); } try { new Proyecto.BS.MetodoPago(_context).Updated(MetodoPago); } catch (Exception) { if (!MetodoPagoExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }