Example #1
0
 public IndividualMetrics(string userName)
 {
     _repo     = new RunningRepository();
     _userName = userName;
 }
Example #2
0
 public MonthlyData(string userName, DateTime startDate)
 {
     _repo      = new RunningRepository();
     _userName  = userName;
     _startDate = startDate;
 }
 public GarminImporter()
 {
     Repository = new RunningRepository();
 }
 public RunningMetrics()
 {
     Repository = new RunningRepository();
 }