Example #1
0
 /**
  * Save the Partner's details
  * 
  * @author David Stansfield
  * @public
  * @param array $data Values to save
  */
 public function save($data = array())
 {
     if (\PartnerModel::savePartner($this->_values) == true) {
         return true;
     } else {
         return false;
     }
 }