// GET: Vehicles/Create public ActionResult Create() { ViewBag.BrandID = new SelectList(CombosHelpers.GetBrands(), "BrandID", "BrandName"); return(View()); }