public async Task <IActionResult> OnGetAsync(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            SupervisorS = await _context.SupervisorS.FirstOrDefaultAsync(m => m.Id == id);

            if (SupervisorS == null)
            {
                return(NotFound());
            }
            return(Page());
        }
Exemple #2
0
        public async Task <IActionResult> OnPostAsync(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            SupervisorS = await _context.SupervisorS.FindAsync(id);

            if (SupervisorS != null)
            {
                _context.SupervisorS.Remove(SupervisorS);
                await _context.SaveChangesAsync();
            }

            return(RedirectToPage("./Index"));
        }