// GET: Customers/Details/5 public IActionResult Details(int?id) { if (id == null) { return(NotFound()); } var customer = _context.FindByID(Convert.ToInt32(id)); if (customer == null) { return(NotFound()); } return(View(customer)); }