public IActionResult MoviesApp(ApplicationResponse appResponse)// this is the controller for the movie application once it's submitted; It will take you to the confirmation screen { MovieList.AddApplication(appResponse); return(View("Confirmation", appResponse)); // this allows the return the view and what the items in the class that were submitted. }