コード例 #1
0
 public IEnumerable <string> GetCountries()
 {
     return(SearchHelper.GetCountries(_contextFactory));
 }
コード例 #2
0
 public IEnumerable <string> GetAthleteNames()
 {
     return(SearchHelper.GetAthleteNames(_contextFactory));
 }
コード例 #3
0
 public IEnumerable <Record> FindData(RecordPanel recordPanel)
 {
     return(SearchHelper.GetDataFromDB(_contextFactory, recordPanel));
 }
コード例 #4
0
 public IEnumerable <string> GetCompetitions()
 {
     return(SearchHelper.GetCompetitions(_contextFactory));
 }
コード例 #5
0
 public IEnumerable <Athlete> FindData(AthletePanel athletePanel)
 {
     return(SearchHelper.GetDataFromDB(_contextFactory, athletePanel));
 }