public bool Equals(InterestComputationMethodCode code)
 {
     if (code == null || code.InternalObject == null || this.InternalObject == null)
     {
         return(false);
     }
     return(this.InternalObject.Equals(code.InternalObject));
 }
        public override bool Equals(object obj)
        {
            InterestComputationMethodCode code = obj as InterestComputationMethodCode;

            return(this.Equals(code));
        }