Exemple #1
0
 public AlertingClearState(ClearAlertState code, string description)
 {
     this.code        = code;
     this.description = description;
 }
Exemple #2
0
 public UpdateClearAlertStateEventArgs(string capID, ClearAlertState state, OrderRecord requestedRecord)
 {
     this.targetCAPID    = capID;
     this.clearState     = state;
     this.requestedOrder = requestedRecord;
 }
Exemple #3
0
 public void DeepCopyFrom(AlertingClearState src)
 {
     this.code        = src.code;
     this.description = src.description;
 }