public async Task <ActionResult <Ofise> > PostOfise(Ofise ofise) { _context.Ofise.Add(ofise); await _context.SaveChangesAsync(); return(CreatedAtAction("GetOfise", new { id = ofise.IdOfis }, ofise)); }
public async Task <IActionResult> PutOfise(int id, Ofise ofise) { if (id != ofise.IdOfis) { return(BadRequest()); } _context.Entry(ofise).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!OfiseExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }