/** * Counts all associated FedexShipments * @return int */ public function CountFedexShipments() { if (is_null($this->intPackageTypeId)) { return 0; } return FedexShipment::CountByPackageTypeId($this->intPackageTypeId); }