Beispiel #1
0
        // GET: Home
        public ActionResult Index()
        {
            var model = VehicleRepoFactory.GetRepository().GetFeatured();

            return(View(model));
        }
Beispiel #2
0
        public ActionResult Details(int id)
        {
            var model = VehicleRepoFactory.GetRepository().GetDetails(id);

            return(View(model));
        }