public override IdentifiedObject CopyIdentifiedObject() { BusbarSection bs = (BusbarSection)base.CopyIdentifiedObject(); bs.BaseVoltage = this.BaseVoltage; return(bs); }
public override bool Equals(object obj) { if (base.Equals(obj)) { BusbarSection x = (BusbarSection)obj; return(x.BaseVoltage == this.BaseVoltage); } else { return(false); } }