Example #1
0
 public Change(Note Old, Note New)
 {
     this.Old = Old;
     this.New = New;
     this.Date = DateTime.Now;
 }
Example #2
0
 public bool Equals(Note Other)
 {
     return (Other.ID == this.ID && Other.Grade == this.Grade && Other.Type == this.Type);
 }