public LifeSafetyOperationRequest(uint requestingProcessIdentifier, string requestingSource, LifeSafetyOperation request, Option<ObjectId> objectIdentifier)
 {
     this.RequestingProcessIdentifier = requestingProcessIdentifier;
     this.RequestingSource = requestingSource;
     this.Request = request;
     this.ObjectIdentifier = objectIdentifier;
 }
Beispiel #2
0
 public ChangeOfLifeSafety(LifeSafetyState newState, LifeSafetyMode newMode, StatusFlags statusFlags, LifeSafetyOperation operationExpected)
 {
     this.NewState          = newState;
     this.NewMode           = newMode;
     this.StatusFlags       = statusFlags;
     this.OperationExpected = operationExpected;
 }
 public ChangeOfLifeSafety(LifeSafetyState newState, LifeSafetyMode newMode, StatusFlags statusFlags, LifeSafetyOperation operationExpected)
 {
     this.NewState = newState;
     this.NewMode = newMode;
     this.StatusFlags = statusFlags;
     this.OperationExpected = operationExpected;
 }
 public static NotificationParameters NewChangeOfLifeSafety(LifeSafetyState newState, LifeSafetyMode newMode, StatusFlags statusFlags, LifeSafetyOperation operationExpected)
 {
     return new ChangeOfLifeSafety(newState, newMode, statusFlags, operationExpected);
 }
Beispiel #5
0
 public static NotificationParameters NewChangeOfLifeSafety(LifeSafetyState newState, LifeSafetyMode newMode, StatusFlags statusFlags, LifeSafetyOperation operationExpected)
 {
     return(new ChangeOfLifeSafety(newState, newMode, statusFlags, operationExpected));
 }
 public LifeSafetyOperationRequest(uint requestingProcessIdentifier, string requestingSource, LifeSafetyOperation request, Option <ObjectId> objectIdentifier)
 {
     this.RequestingProcessIdentifier = requestingProcessIdentifier;
     this.RequestingSource            = requestingSource;
     this.Request          = request;
     this.ObjectIdentifier = objectIdentifier;
 }