public async Task <IActionResult> OnGetAsync(long?id) { if (id == null) { return(NotFound()); } Employee = await _context.Employee.FirstOrDefaultAsync(m => m.ID == id); if (Employee == null) { return(NotFound()); } return(Page()); }
public async Task <IActionResult> OnPostAsync(long?id) { if (id == null) { return(NotFound()); } Employee = await _context.Employee.FindAsync(id); if (Employee != null) { _context.Employee.Remove(Employee); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }