示例#1
0
        public SessionsPageViewModel(IMcProfile profile, INavigationService navigationService) : base(navigationService)
        {
            this.Title = "Sessions";

            this.Profile = profile;

            this.ItemTappedCommand = new DelegateCommand <McSession>(this.OnItemTapped);
        }
示例#2
0
        public SourcesPageViewModel(IMcProfile profile, INavigationService navigationService) : base(navigationService)
        {
            this.Title = "Sources";

            this.Profile = profile;
        }
示例#3
0
 public McSignalrProxy(IEventAggregator eventAggregator, IMcProfile profile)
 {
     this._eventAggregator = eventAggregator;
     this._profile         = profile;
 }