public HighSchoolStudent(int id, ValueObject.Name name, ValueObject.Cpf cpf, String email)
 {
     Id    = id;
     Name  = name;
     Cpf   = cpf;;
     Email = email;
     InitBehaviour();
 }
 public PrimaryStudent(int id, ValueObject.Name name, ValueObject.Cpf cpf, String email)
 {
     Id    = id;
     Name  = name;
     Cpf   = cpf;
     Email = email;
     InitPrimaryStudentBehaviour();
 }