public bool IsNewerThan(IHasCreationDate reference)
 {
     return(CreationDate > reference.CreationDate);
 }
 public bool IsNewerThan(IHasCreationDate reference)
 {
     return CreationDate > reference.CreationDate;
 }