示例#1
0
        public ActionResult Details(int id)
        {
            GrandPrixModel gp = new GrandPrixModel(id, ref db);

            if (gp.Race == null)
            {
                throw new HttpException(404, "The race " + id + " requested is not in the database.");
            }

            ViewBag.Title = gp.Race.year + " " + gp.Race.name;


            return(View(gp));
        }
示例#2
0
 public PartialViewResult QualyResults(GrandPrixModel gp)
 {
     return(PartialView("_QualyResults", gp));
 }
示例#3
0
 public PartialViewResult RaceResults(GrandPrixModel gp)
 {
     return(PartialView("_RaceResults", gp));
 }