public async Task <ActionResult <UposlenikDoma> > PostUposlenikDoma(UposlenikDoma uposlenikDoma) { _context.UposlenikDoma.Add(uposlenikDoma); await _context.SaveChangesAsync(); return(CreatedAtAction("GetUposlenikDoma", new { id = uposlenikDoma.UposlenikDomaId }, uposlenikDoma)); }
public async Task <IActionResult> PutUposlenikDoma(int id, UposlenikDoma uposlenikDoma) { if (id != uposlenikDoma.UposlenikDomaId) { return(BadRequest()); } _context.Entry(uposlenikDoma).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UposlenikDomaExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }