public async Task <ActionResult <Notiftache> > PostNotiftache(Notiftache notiftache) { _context.notiftaches.Add(notiftache); await _context.SaveChangesAsync(); return(CreatedAtAction("GetNotiftache", new { id = notiftache.Id }, notiftache)); }
public async Task <IActionResult> PutNotiftache(int id, Notiftache notiftache) { if (id != notiftache.Id) { return(BadRequest()); } _context.Entry(notiftache).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!NotiftacheExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }