예제 #1
0
        public HomePageViewModel(INavigationService navigationService, IShowcaseService showcaseService)
        {
            this.navigationService = navigationService;
            this.showcaseService   = showcaseService;

            Showcases = new ObservableRangeCollection <PairedProductShowcase>();
            NavigateProductPageCommand = new DelegateCommand <Product>(NavigateProductPage);
        }
 public ShowcaseController(IShowcaseService showcaseService)
 {
     this._showcaseService = showcaseService;
 }