Esempio n. 1
0
 public GooglePlayStore(
     IGooglePlayStoreRetrieveProductsService retrieveProductsService,
     IGooglePlayStorePurchaseService storePurchaseService,
     IGoogleFetchPurchases fetchPurchases,
     IGooglePlayStoreFinishTransactionService transactionService,
     IGooglePurchaseCallback googlePurchaseCallback,
     IGooglePlayStoreExtensionsInternal googlePlayStoreExtensions,
     IUtil util)
 {
     m_Util = util;
     m_RetrieveProductsService   = retrieveProductsService;
     m_StorePurchaseService      = storePurchaseService;
     m_FetchPurchases            = fetchPurchases;
     m_FinishTransactionService  = transactionService;
     m_GooglePurchaseCallback    = googlePurchaseCallback;
     m_GooglePlayStoreExtensions = googlePlayStoreExtensions;
 }
Esempio n. 2
0
 internal GooglePlayStoreRetrieveProductsService(IGooglePlayStoreService googlePlayStoreService, IGoogleFetchPurchases googleFetchPurchases)
 {
     m_GooglePlayStoreService = googlePlayStoreService;
     m_GoogleFetchPurchases   = googleFetchPurchases;
 }
Esempio n. 3
0
 internal GooglePlayStoreRetrieveProductsService(IGooglePlayStoreService googlePlayStoreService, IGoogleFetchPurchases googleFetchPurchases, IGooglePlayConfigurationInternal googlePlayConfigurationInternal)
 {
     m_GooglePlayStoreService          = googlePlayStoreService;
     m_GoogleFetchPurchases            = googleFetchPurchases;
     m_GooglePlayConfigurationInternal = googlePlayConfigurationInternal;
 }