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