Exemple #1
0
        public bool Equals(BulkMoveSeries other)
        {
            if (other == null)
            {
                return(false);
            }

            return(SeriesId.Equals(other.SeriesId));
        }
Exemple #2
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }

            if (obj.GetType() != GetType())
            {
                return(false);
            }

            return(SeriesId.Equals(((BulkMoveSeries)obj).SeriesId));
        }