protected override void RestoreTransaction(string productId)
 {
     // it's as though it was purchased again
     PhotoFilterManager.Purchase(productId);
 }
 protected override void CompleteTransaction(string productId)
 {
     // Register the purchase, so it is remembered for next time
     PhotoFilterManager.Purchase(productId);
 }