public IEnumerable <string> GetCountries()
 {
     return(SearchHelper.GetCountries(_contextFactory));
 }
 public IEnumerable <string> GetAthleteNames()
 {
     return(SearchHelper.GetAthleteNames(_contextFactory));
 }
 public IEnumerable <Record> FindData(RecordPanel recordPanel)
 {
     return(SearchHelper.GetDataFromDB(_contextFactory, recordPanel));
 }
 public IEnumerable <string> GetCompetitions()
 {
     return(SearchHelper.GetCompetitions(_contextFactory));
 }
 public IEnumerable <Athlete> FindData(AthletePanel athletePanel)
 {
     return(SearchHelper.GetDataFromDB(_contextFactory, athletePanel));
 }