/**
  * Static Helper Method to Create using QueryString arguments
  *
  * @param mixed $objParentObject QForm or QPanel which will be using this EventSignupFormMetaControl
  * @param QMetaControlCreateType $intCreateType rules governing EventSignupForm object creation - defaults to CreateOrEdit
  * @return EventSignupFormMetaControl
  */
 public static function CreateFromQueryString($objParentObject, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     $intSignupFormId = QApplication::QueryString('intSignupFormId');
     return EventSignupFormMetaControl::Create($objParentObject, $intSignupFormId, $intCreateType);
 }