Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TransactionsPage" /> class.
 /// </summary>
 /// <param name="analysisLogger">The analysis logger.</param>
 /// <param name="device">The device.</param>
 public TransactionsPage(IAnalysisLogger analysisLogger,
                         IDevice device)
 {
     this.AnalysisLogger = analysisLogger;
     this.AnalysisLogger.TrackEvent(PageRequestedEvent.Create(this.GetType().Name));
     this.InitializeComponent();
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MobileTopupPaymentFailedPage" /> class.
 /// </summary>
 /// <param name="analysisLogger">The analysis logger.</param>
 public MobileTopupPaymentFailedPage(IAnalysisLogger analysisLogger)
 {
     this.AnalysisLogger = analysisLogger;
     this.AnalysisLogger.TrackEvent(PageRequestedEvent.Create(this.GetType().Name));
     this.InitializeComponent();
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LoginPage" /> class.
 /// </summary>
 /// <param name="analysisLogger">The analysis logger.</param>
 public LoginPage(IAnalysisLogger analysisLogger)
 {
     this.AnalysisLogger = analysisLogger;
     this.AnalysisLogger.TrackEvent(PageRequestedEvent.Create(this.GetType().Name));
     this.InitializeComponent();
 }