public async Task <ActionResult <data.Detalle> > PostDetalle(data.Detalle Detalle) { new Proyecto.BS.Detalle(_context).Insert(Detalle); int _id = Detalle.idDetalle.Value; return(Detalle); }
public async Task <IActionResult> PutDetalle(int id, data.Detalle Detalle) { if (id != Detalle.idDetalle) { return(BadRequest()); } try { new Proyecto.BS.Detalle(_context).Updated(Detalle); } catch (Exception) { if (!DetalleExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }