public async Task <IActionResult> PutStudents([FromRoute] string id, [FromBody] Students students) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (Int32.Parse(id) != students.ID) { return(BadRequest()); } _context.Entry(students).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StudentsExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutCatalog([FromRoute] int id, [FromBody] Catalog catalog) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != catalog.CourseId) { return(BadRequest()); } _context.Entry(catalog).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CatalogExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutToDos([FromRoute] int id, [FromBody] ToDos todos) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != todos.ToDoID) { return(BadRequest()); } _context.Entry(todos).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ToDosExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }