Esempio n. 1
0
 /**
  * Check to see if the Client has a Partner
  * 
  * @public
  * @author David Stansfield
  */
 public function hasPartner()
 {
     if (\PartnerModel::partnerExists((int) $this->_clientID)) {
         return true;
     } else {
         return false;
     }
 }