public CommunicationStateChangedEventArgs(ICommunicationStateModel model)
 {
     this.CommunicationStateModel = model;
 }
Ejemplo n.º 2
0
 private void WhenCommunicationStateAcknowledged(object sender, EventArgs e)
 {
     this.CommunicationStateModel = new LoadedCommunicationStateModel();
 }
 protected void OnCommunicationStateChanged(ICommunicationStateModel model)
 {
     this.OnCommunicationStateChanged(new CommunicationStateChangedEventArgs(model));
 }