Beispiel #1
0
        public LinkedAccounts()
        {
            state = State.App.Instance.Linked;
            state.AddObserver(this);

            SyncCommand = new RelayAsyncCommand(Sync);
        }
Beispiel #2
0
        public StudentOverview()
        {
            state = State.App.Instance.Linked;
            state.AddObserver(this);

            ClearFilterCommand       = new RelayCommand(clearFilter);
            DoAccountActionCommand   = new RelayAsyncCommand <AccountAction>(doAccountAction);
            ViewDetailsActionCommand = new RelayAsyncCommand <AccountAction>(viewDetailsAction);
            updateList();
        }