/// <summary> /// Indicates whether the current <see cref="SystemmenusxrefRecord" /> instance is equal to another <see cref="SystemmenusxrefRecord" /> instance. /// </summary> /// <param name="that"> /// The <see cref="SystemmenusxrefRecord" /> instance to be compared against this instance. /// </param> /// <returns> /// True if both instances are considered equal; otherwise, false. /// </returns> public Boolean Equals(SystemmenusxrefRecord that) { Boolean result = true; result = result && (this.Id == that.Id); result = result && (this.SmenuId == that.SmenuId); result = result && (this.ModId == that.ModId); return(result); }
/// <summary> /// Creates a new <see cref="SystemmenusxrefRecord" /> object instance that is a shallow-copy of the current object instance. /// </summary> /// <returns> /// The shallow-copy of the current <see cref="SystemmenusxrefRecord" /> object instance. /// </returns> public SystemmenusxrefRecord Clone() { SystemmenusxrefRecord record = new SystemmenusxrefRecord(); record.Id = this.Id; record.SmenuId = this.SmenuId; record.ModId = this.ModId; return(record); }