Пример #1
0
 public void ChangeModel(TerminalStatusDto newModel)
 {
     _terminalStatusDto = newModel;
     // Raise all properties changed
     RaisePropertyChanged(null);
 }
Пример #2
0
 public TerminalViewModel(TerminalStatusDto terminalStatusDto)
 {
     UpdateTerminalStatus(terminalStatusDto);
 }
Пример #3
0
 public void UpdateTerminalStatus(TerminalStatusDto newTerminalStatusDto)
 {
     ChangeModel(newTerminalStatusDto);
 }