public bool Equals(BulkMoveArtist other) { if (other == null) { return(false); } return(ArtistId.Equals(other.ArtistId)); }
public override bool Equals(object obj) { if (obj == null) { return(false); } if (obj.GetType() != GetType()) { return(false); } return(ArtistId.Equals(((BulkMoveArtist)obj).ArtistId)); }
bool IEquatable <Artist> .Equals(Artist other) { return(ArtistId.Equals(other.ArtistId)); }