public ParentsFeedBack(int id, Student creator, DateTime dateTime, String description)
 {
     this.id          = id;
     this.creator     = creator;
     this.dateTime    = dateTime;
     this.grades      = new List <Grade>();
     this.description = description;
     creator.addStudentParentFeedback(this);
 }