/**
  * Get a static reference to the storage object associated with this model object
  *
  * @return the storage object
  */
 public static function get_instance()
 {
     if (self::$bo == null) {
         self::$bo = CreateObject('rental.bofellesdata');
     }
     return self::$bo;
 }