public function __construct(AttendeeInvitation $eventGuest)
 {
     parent::__construct($eventGuest);
 }
 public function __construct()
 {
     $organization = new Organization();
     parent::__construct($organization);
 }
Ejemplo n.º 3
0
 public function __construct()
 {
     $user = new User();
     parent::__construct($user);
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     $event = new Event();
     parent::__construct($event);
 }
 public function __construct()
 {
     $attendee = new Attendee();
     parent::__construct($attendee);
 }
 public function __construct()
 {
     $organizationInfo = new OrganizationInfo();
     parent::__construct($organizationInfo);
 }
 public function __construct(AttendeeHealthReleaseForm $healthForm)
 {
     parent::__construct($healthForm);
 }
 public function __construct(EventSite $eventSite)
 {
     parent::__construct($eventSite);
 }