protected bool Equals(CallNote other)
 {
     return(NoteTime.Equals(other.NoteTime) && NoteContent == other.NoteContent && Utilities.EqualsAll(ChildCallNotes, other.ChildCallNotes));
 }
Example #2
0
 protected bool Equals(ChildCallNote other)
 {
     return(NoteTime.Equals(other.NoteTime) && NoteContent == other.NoteContent);
 }