Ejemplo n.º 1
0
        public bool  isEqual(ConfirmControl value)
        {
            if (!this.getMsgHeader().isEqual(value.getMsgHeader()))
            {
                return(false);
            }
            if (!this.getBody().isEqual(value.getBody()))
            {
                return(false);
            }

            return(true);
        }
Ejemplo n.º 2
0
        public bool isEqual(ConfirmControl value)
        {
            if (!this.getMsgHeader().isEqual(value.getMsgHeader()))
            {
            return false;
            }
            if (!this.getBody().isEqual(value.getBody()))
            {
            return false;
            }

            return true;
        }
 public virtual bool isControlAccepted(ConfirmControl msg)
 {
     return (msg.getBody().getConfirmControlRec().getResponseCode() == 0);
 }
 public virtual bool isControlAccepted(ConfirmControl msg)
 {
     return(msg.getBody().getConfirmControlRec().getResponseCode() == 0);
 }