public void shouldRegisterStudent()
 {
     Student bob = new Student("Bob");
     Job job = new Job(null, "A job");
     job.Register(bob);
     Assert.IsTrue(job.registeredStudents.Contains(bob));
 }
 public void Apply(Job job)
 {
     job.Register(this);
 }