public ActionResult Create() { return(View(new FilmInfoContainer() { AvailableActors = ActorsDao.FindAll(), AvailableDirectors = DirectorsDao.FindAll(), AvailableGenres = GenresDao.FindAll() })); }
// GET: Actors public ActionResult Index() { return(View(ActorsDao.FindAll().Select(a => new ActorView(a)).OrderBy(a => a.FullName))); }