public async Task <ActionResult <Ulogin> > PostUlogin(Ulogin ulogin) { _context.Ulogin.Add(ulogin); await _context.SaveChangesAsync(); return(CreatedAtAction("GetUlogin", new { id = ulogin.Id }, ulogin)); }
public async Task <IActionResult> PutUlogin(int id, Ulogin ulogin) { if (id != ulogin.Id) { return(BadRequest()); } _context.Entry(ulogin).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UloginExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }