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