Ejemplo n.º 1
0
 public bool Equals([AllowNull] Event_History_LogNotify other)
 {
     if (other == null)
     {
         return(false);
     }
     return(Log_id.Equals(other.Log_id));
 }
Ejemplo n.º 2
0
 public int CompareTo([AllowNull] Event_History_LogNotify other)
 {
     if (other == null)
     {
         return(1);
     }
     else
     {
         return(Log_id.CompareTo(other.Log_id));
     }
 }