// GET: Home public ActionResult Default() { var model = new HomeModel(); model.GetProducts(); model.GetServices(); return View("Default", model); }