public IActionResult OrderDetails(int year, string country) { NorthwindDb db = new NorthwindDb(_connectionString); List <Order> orders = db.GetOrdersForYear(year, country); return(View(orders)); }