/**
  * Singleton: returns an instance
  *
  * @return PlentymarketsImportItemStockStack
  */
 public static function getInstance()
 {
     if (!self::$Instance instanceof self) {
         self::$Instance = new self();
     }
     return self::$Instance;
 }