Exemplo n.º 1
0
        public bool Equals(BulkMoveArtist other)
        {
            if (other == null)
            {
                return(false);
            }

            return(ArtistId.Equals(other.ArtistId));
        }
Exemplo n.º 2
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }

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

            return(ArtistId.Equals(((BulkMoveArtist)obj).ArtistId));
        }
Exemplo n.º 3
0
 bool IEquatable <Artist> .Equals(Artist other)
 {
     return(ArtistId.Equals(other.ArtistId));
 }