public async Task <IActionResult> PutClase(int id, Clase Clase) { if (id != Clase.CG_CLASE) { return(BadRequest()); } _context.Entry(Clase).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ClaseExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <ActionResult <Clase> > PostClase(Clase Clase) { _context.Clase.Add(Clase); try { await _context.SaveChangesAsync(); } catch (DbUpdateException) { if (ClaseExists(Clase.CG_CLASE)) { return(Conflict()); } else { throw; } } return(CreatedAtAction("GetClase", new { id = Clase.CG_CLASE }, Clase)); }