Exemplo n.º 1
0
 public Presenter(IView view)
 {
     this.view = view;
     SetEventHandlers();
     this.model = new Model();
     signals = new Dictionary<string, Signal>();
     signalLayoutArgs = new Dictionary<string, SignalPanelArgs>();
     signalPropertyArgs = new Dictionary<string, PropertyPanelArgs>();
     signalWaveletShowed = new Dictionary<string, List<int>>();
     signalPDMData = new Dictionary<string, PDMData>();
 }
Exemplo n.º 2
0
 public ViewModel(IView view)
 {
     this.view = view;
     model = new Model();
 }