示例#1
0
 private void LoadHistoryList(object sender, DoWorkEventArgs e)
 {
     StatusHistoryList.Clear();
     StatusHistoryList = new ObservableCollection <AccountsStatusDetailsSet>(_accountStatusService.GetStatusesById(CurrentAccount.Id));
     _worker.DoWork   -= LoadHistoryList;
 }
示例#2
0
 private void LoadHistoryStatus(int id)
 {
     StatusHistoryList = new ObservableCollection <AccountsStatusDetailsSet>(_accountStatusService.GetStatusesById(id));
 }