public void PopulateNextRace(WorkoutEvent nextRace)
 {
     NextRace         = nextRace.Title;
     NextRaceDate     = nextRace.Date.ToShortDateString();
     NextRaceLocation = nextRace.Notes;
 }
 public void PopulateNextMarathon(WorkoutEvent nextMarathon)
 {
     NextMarathon         = nextMarathon.Title;
     NextMarathonDate     = nextMarathon.Date.ToShortDateString();
     NextMarathonLocation = nextMarathon.Notes;
 }