Esempio n. 1
0
 public WinRTStore(IWindowsIAP win8, IUtil util,
                   ILogger logger)
 {
     this.win8   = win8;
     this.util   = util;
     this.logger = logger;
 }
 public Win8_1BillingService(IWindowsIAP win8,
                             ProductIdRemapper remapper,
                             TransactionDatabase tDb,
                             ILogger logger)
 {
     this.win8     = win8;
     this.tDb      = tDb;
     this.remapper = remapper;
     this.logger   = logger;
 }
Esempio n. 3
0
 public WP8BillingService(IWindowsIAP wp8,
                          UnibillConfiguration config,
                          ProductIdRemapper remapper,
                          TransactionDatabase tDb,
                          ILogger logger) {
     this.wp8 = wp8;
     this.db = config;
     this.tDb = tDb;
     this.remapper = remapper;
     this.logger = logger;
 }
Esempio n. 4
0
 public WP8BillingService(IWindowsIAP wp8,
                          ProductIdRemapper remapper,
                          TransactionDatabase tDb,
                          IUtil util,
                          ILogger logger)
 {
     this.wp8      = wp8;
     this.tDb      = tDb;
     this.remapper = remapper;
     this.util     = util;
     this.logger   = logger;
 }
Esempio n. 5
0
 public WP8BillingService(IWindowsIAP wp8,
                          UnibillConfiguration config,
                          ProductIdRemapper remapper,
                          TransactionDatabase tDb,
                          ILogger logger)
 {
     this.wp8      = wp8;
     this.db       = config;
     this.tDb      = tDb;
     this.remapper = remapper;
     this.logger   = logger;
 }
Esempio n. 6
0
 /// <summary>
 /// Allow the windows IAP service to be swapped
 /// out since the Application developer can switch
 /// between sandbox/live after this store is
 /// constructed.
 /// </summary>
 public void SetWindowsIAP(IWindowsIAP iap)
 {
     this.win8 = iap;
 }