public BoutiqueDetailPageViewModel(INavigationService navigationService, IBoutiqueAPI boutiqueApi)
        {
            _navigationService = navigationService;
            _boutiqueApi       = boutiqueApi;

            CloseCommand = new DelegateCommand(ClosePageAsync);
        }
Example #2
0
        public BoutiqueTabPageViewModel(INavigationService navigationService, IBoutiqueAPI boutiqueAPI)
        {
            _navigationService = navigationService;
            _boutiqueApi       = boutiqueAPI;

            Title = "BOUTIQUES";

            GetBoutiqueAsync();
            GoToDetailPageCommand = new DelegateCommand(GoToDetailPageAsync);
        }