Example #1
0
        public SignInFlyoutViewModel(IGoComicsService gocomics, IFlyoutService flyoutService, IEventAggregator eventAggregator)
        {
            this._gocomics        = gocomics;
            this._flyoutService   = flyoutService;
            this._eventAggregator = eventAggregator;

            this.SignInCommand = new DelegateCommand <object>(this.ExecuteSignIn, this.CanSignIn);
        }
Example #2
0
 public HomeViewModel(IGoComicsService gocomics)
 {
     this._gocomics = gocomics;
 }