public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new CWRConceptMySQL();
     }
     return self::$instance;
 }
 public function getCWRConceptDAO()
 {
     return CWRConceptMySQL::getInstance();
 }