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

            Project = await _context.Delete(Project.Id);

            return(RedirectToPage("./Index"));
        }
Esempio n. 2
0
        public async Task <ActionResult> Delete([Required] int id)
        {
            var deletedProject = await _projectDatabase.Delete(id);

            return(deletedProject == null ? (StatusCodeResult)NotFound() : NoContent());
        }