public async Task <IActionResult> Edit(int id, [Bind("IdMaGiamGia,PhanTram")] GiamGiaModel giamGiaModel) { if (id != giamGiaModel.IdMaGiamGia) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(giamGiaModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!GiamGiaModelExists(giamGiaModel.IdMaGiamGia)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(giamGiaModel)); }
public async Task <IActionResult> Create([Bind("IdMaGiamGia,PhanTram")] GiamGiaModel giamGiaModel) { if (ModelState.IsValid) { _context.Add(giamGiaModel); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(giamGiaModel)); }