public function delete(Application_Model_Models_Container $container)
 {
     $where = $this->getDbTable()->getAdapter()->quoteInto("id = ?", $container->getId());
     $this->getDbTable()->delete($where);
     $container->notifyObservers();
 }