function save()
 {
     if ($this->valid()) {
         $attendee = new Vendor($this->params);
         return $attendee->create_with_id();
     } else {
         return false;
     }
 }