public override bool Equals(System.Object obj)
        {
            // If parameter is null return false.
            if (obj == null)
            {
                return(false);
            }

            // If parameter cannot be cast to InterestComputationMethodCodeAdaptee return false.
            InterestComputationMethodCodeAdaptee p = obj as InterestComputationMethodCodeAdaptee;

            if ((System.Object)p == null)
            {
                return(false);
            }

            // Return true if the fields match:
            return((Value == p.Value) && (Label == p.Label));
        }
 private InterestComputationMethodCode(InterestComputationMethodCodeAdaptee Instance)
 {
     this.InternalObject = Instance;
 }