public ActionResult AddReview() { var model = new AddReviewVM(); model.RatingList = _repo.GetAllRatings(); model.PlatformList = _repo.GetAllPlatforms(); return(View(model)); }