public IActionResult Delete(int id, int entryId) { _entryPlatformRepository.Delete(id); TempData["message"] = "Platform entry deleted successfully."; return(RedirectToAction( "Index", "EntryPlatform", new { id = entryId })); }
public void Delete(int id) { EntryPlatformRepository.Delete(id); }