/**
  * Static Helper Method to Create using PK arguments
  * You must pass in the PK arguments on an object to load, or leave it blank to create a new one.
  * If you want to load via QueryString or PathInfo, use the CreateFromQueryString or CreateFromPathInfo
  * static helper methods.  Finally, specify a CreateType to define whether or not we are only allowed to
  * edit, or if we are also allowed to create a new one, etc.
  *
  * @param mixed $objParentObject QForm or QPanel which will be using this NarroFileProgressMetaControl
  * @param integer $intFileProgressId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing NarroFileProgress object creation - defaults to CreateOrEdit
  * @return NarroFileProgressMetaControl
  */
 public static function Create($objParentObject, $intFileProgressId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intFileProgressId)) {
         $objNarroFileProgress = NarroFileProgress::Load($intFileProgressId);
         // NarroFileProgress was found -- return it!
         if ($objNarroFileProgress) {
             return new NarroFileProgressMetaControl($objParentObject, $objNarroFileProgress);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a NarroFileProgress object with PK arguments: ' . $intFileProgressId);
             }
         }
         // If EditOnly is specified, throw an exception
     } else {
         if ($intCreateType == QMetaControlCreateType::EditOnly) {
             throw new QCallerException('No PK arguments specified');
         }
     }
     // If we are here, then we need to create a new record
     return new NarroFileProgressMetaControl($objParentObject, new NarroFileProgress());
 }
 /**
  * Reload this NarroFileProgress from the database.
  * @return void
  */
 public function Reload()
 {
     // Make sure we are actually Restored from the database
     if (!$this->__blnRestored) {
         throw new QCallerException('Cannot call Reload() on a new, unsaved NarroFileProgress object.');
     }
     $this->DeleteCache();
     // Reload the Object
     $objReloaded = NarroFileProgress::Load($this->intFileProgressId);
     // Update $this's local variables to match
     $this->FileId = $objReloaded->FileId;
     $this->LanguageId = $objReloaded->LanguageId;
     $this->strFileMd5 = $objReloaded->strFileMd5;
     $this->strHeader = $objReloaded->strHeader;
     $this->intTotalTextCount = $objReloaded->intTotalTextCount;
     $this->intApprovedTextCount = $objReloaded->intApprovedTextCount;
     $this->intFuzzyTextCount = $objReloaded->intFuzzyTextCount;
     $this->intProgressPercent = $objReloaded->intProgressPercent;
     $this->blnExport = $objReloaded->blnExport;
 }