/**
  * get instance
  *
  *
  * @return Application_Model_CountryMapper
  */
 public static function getInstance()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }