/// <summary> /// Indique si l'objet actuel est égal à un autre objet du même type. /// </summary> /// <param name="other">Objet à comparer avec cet objet.</param> /// <returns>true si l'objet en cours est égal au paramètre other ; sinon, false.</returns> public virtual bool Equals(ApplicationUserLogin other) { return(Equals(other as object)); }
/// <summary> /// Compare l'objet en cours à un autre objet du même type. /// </summary> /// <param name="other">Objet à comparer avec cet objet.</param> /// <returns>Valeur qui indique l'ordre relatif des objets comparés.</returns> public virtual int CompareTo(ApplicationUserLogin other) { return(GetHashCode().CompareTo(other.GetHashCode())); }