Exemplo n.º 1
0
 public ProcessStateChangeMessage(Globals.ProcessStates newState, string description, int portNo = -1)
 {
     this.PortNo       = portNo;
     this.ProcessState = newState;
     this.Description  = description;
 }
Exemplo n.º 2
0
 public ProcessStateChangeMessage(Globals.ProcessStates newState, string description)
 {
     this.ProcessState = newState;
     this.Description  = description;
 }