private void SetVerificationPoint(TriggerPoints triggerPoint, bool value)
 {
     if (value)
     {
         this.VerificationPoints |= triggerPoint;
     }
     else
     {
         this.VerificationPoints &= ~triggerPoint;
     }
 }
 public PXUIVerifyAttribute(Type conditionType, TriggerPoints verificationPoints, PXErrorLevel errorLevel, string message, params Type[] args)
     : this(conditionType, errorLevel, message, args)
 {
     this.VerificationPoints = verificationPoints;
 }