Beispiel #1
0
 /// <summary>
 /// Loads the data.
 /// </summary>
 /// <param name="fromDate">From date.</param>
 /// <param name="toDate">To date.</param>
 public void LoadData(DateTime fromDate, DateTime toDate)
 {
     this.TryExecute(
         () =>
     {
         IAnalyticsClient client = this.factory.Create <IAnalyticsClient>();
         this.View.SetPerformanceData(client.GetAllAppPerformances(fromDate, toDate));
     },
         null,
         true);
 }