public IActionResult DeleteBug(int BugId)
 {
     BugRepository.DeleteBug(BugId);
     return(RedirectToAction("Index"));
 }