public async Task <ActionResult <Proffesors> > PostProffesors(Proffesors proffesors) { _context.Proffesors.Add(proffesors); await _context.SaveChangesAsync(); return(CreatedAtAction("GetProffesors", new { id = proffesors.Id }, proffesors)); }
public async Task <IActionResult> PutProffesors(int id, Proffesors proffesors) { if (id != proffesors.Id) { return(BadRequest()); } _context.Entry(proffesors).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProffesorsExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public Task <Proffesors> Update(int id, Proffesors newT) { throw new NotImplementedException(); }
public Task <Proffesors> Add(Proffesors t) { throw new NotImplementedException(); }