/**
  * Creates the object by passing the objectID
  * 
  * @param integer $avatarID
  */
 public function __construct($avatarID)
 {
     parent::__construct('avatarsFilesystem', $avatarID);
 }
 /**
  * Cronstructs the object by passing the objectID
  *
  * @param integer $attachmentID
  */
 public function __construct($attachmentID)
 {
     parent::__construct('attachmentsFilesystem', $attachmentID);
 }
 /**
  * Creates the object by passing the objectID
  *
  * @param integer $backupID
  */
 public function __construct($backupID)
 {
     parent::__construct('backupFilesystem', $backupID);
 }