public function __construct(DbSimple_Interface $db_wordpress, array $options = array())
 {
     $this->db_yourmembers = $db_wordpress;
     $this->options = $options;
     $this->session = new Zend_Session_Namespace(get_class($this));
     parent::__construct(array($this, 'doWork'));
     $this->init();
 }
 public function __construct(DbSimple_Mypdo $db3, array $options = array())
 {
     $this->db3 = $db3;
     $this->options = $options;
     $this->session = new Zend_Session_Namespace(get_class($this));
     parent::__construct(array($this, 'doWork'));
     $this->init();
 }