/**
  * Restiuisce un singleton per creare Modelli
  * @return ModelloFactory
  */
 public static function instance()
 {
     if (!isset(self::$singleton)) {
         self::$singleton = new Album_ordineFactory();
     }
     return self::$singleton;
 }