Exemplo n.º 1
0
 /**
  * Returns an instance of class
  *
  * @return BOL_BillingGatewayProductDao
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
Exemplo n.º 2
0
 public function deleteGatewayProductsByPluginKey($pluginKey)
 {
     $this->billingGatewayProductDao->deleteByPluginKey($pluginKey);
 }