Exemple #1
0
 public UserStatistics(DateTime lastSyncTime)
 {
     Android       = new PlatformStatistics(lastSyncTime, true);
     Ios           = new PlatformStatistics(lastSyncTime, true);
     RecentHistory = new RecentCountryStatsHistory(lastSyncTime);
     CountryStats  = new Dictionary <int, CountryStatistics>();
 }
Exemple #2
0
 public CountryStatistics(DateTime lastSyncTime)
 {
     Android       = new PlatformStatistics(lastSyncTime);
     Ios           = new PlatformStatistics(lastSyncTime);
     RecentHistory = new RecentCountryStatsHistory(lastSyncTime);
 }