public MovieListPageViewModel(MovieListPage view, IMovieRepository repository)
        {
            this.view       = view;
            this.repository = repository;

            RetrieveData();
        }
Beispiel #2
0
 public void When_I_navigate_to_the_Movie_List_page()
 {
     _page = SelenoHost.NavigateToInitialPage <MoviesController, MovieListPage>(x => x.Index());
 }