Exemplo n.º 1
0
        public async Task <IActionResult> OnGetAsync(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            Match = await _context.Matches.SingleOrDefaultAsync(m => m.Id == id);

            if (Match == null)
            {
                return(NotFound());
            }
            return(Page());
        }
Exemplo n.º 2
0
        public async Task <IActionResult> OnPostAsync(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            Match = await _context.Matches.FindAsync(id);

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

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