public bool DeleteOccupation(Occupation occupation)
 {
     throw new NotImplementedException();
 }
 public bool AddOccupation(Occupation occupation)
 {
     entities.Occupations.Add(occupation);
     return true;
 }