/**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return IncomingMailbox 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'incoming_mailboxes';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return Currency 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'currencies';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return ConfigOption 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'config_options';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return Attachment 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'attachments';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return SouceUser 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'source_users';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return StatusUpdate 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'status_updates';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return InvoiceItem 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'invoice_items';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return PageVersion 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'page_versions';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return ActivityLog 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'activity_logs';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return EmailTemplate 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'email_templates';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return DocumentCategory 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'document_categories';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return CommitProjectObject 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'commit_project_objects';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return TimeReport 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'time_reports';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return ProjectGroup 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'project_groups';
     parent::__construct($id);
 }
 /**
  * Construct the object and if $id is present load record from database
  *
  * @param mixed $id
  * @return AssignmentFilter 
  */
 function __construct($id = null)
 {
     $this->table_name = TABLE_PREFIX . 'assignment_filters';
     parent::__construct($id);
 }