Esempio n. 1
0
 public void ChangeModel(TerminalStatusDto newModel)
 {
     _terminalStatusDto = newModel;
     // Raise all properties changed
     RaisePropertyChanged(null);
 }
Esempio n. 2
0
 public TerminalViewModel(TerminalStatusDto terminalStatusDto)
 {
     UpdateTerminalStatus(terminalStatusDto);
 }
Esempio n. 3
0
 public void UpdateTerminalStatus(TerminalStatusDto newTerminalStatusDto)
 {
     ChangeModel(newTerminalStatusDto);
 }