/**
  * fetches all the family types
  * @return array
  */
 public function getsAllFamilyTypes()
 {
     $Object = new Family();
     $result = $Object->allFamilyTypes();
     return $result;
 }