public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Attach(ServiceType).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ServiceTypeExists(ServiceType.Id)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } ServiceType = await _context.ServiceType.FindAsync(id); if (ServiceType != null) { _context.ServiceType.Remove(ServiceType); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }