// Remove forceService from attends List. Applicant has either
 // passed the forceService or has unenrolled from it
 public void DropForceService(ForceService forceService)
 {
     EnrolledOn.Remove(forceService);
 }
 // Add ForceService to List Applicant's result
 public void AddForceService(ForceService forceService)
 {
     EnrolledOn.Add(forceService);
 }