public bool Equals(BulkMoveSeries other) { if (other == null) { return(false); } return(SeriesId.Equals(other.SeriesId)); }
public override bool Equals(object obj) { if (obj == null) { return(false); } if (obj.GetType() != GetType()) { return(false); } return(SeriesId.Equals(((BulkMoveSeries)obj).SeriesId)); }