public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Album = await _album.GetAlbumByIdAsync(id); if (Album != null) { await _album.DeleteAlbumAsync(id); } return(RedirectToPage("./Index")); }