public int TotalSeconds()
 {
     return(_exercisingDb.GetAllActivities().Sum(x => x.TimeSpentInSeconds));
 }
 public Hobie GetHobie(string name)
 {
     return(_hobiesDb.GetAllActivities().FirstOrDefault(x => x.NameOfHobie == name));
 }