public ImportantDate(DateTime date, ImportantDateType type, string notes)
 {
     Date  = date;
     Type  = type;
     Notes = notes;
 }
 public ImportantDateBuilder UseType(ImportantDateType type)
 {
     this.type = type;
     return(this);
 }