Ejemplo n.º 1
0
 public IEnumerable <RaceData> FindAll()
 {
     return(template.Query("select * from RaceData", MapRowToRaceData));
 }
Ejemplo n.º 2
0
 public IEnumerable <StartListMember> FindAll()
 {
     return(template.Query("select * from startlist", MapRowToStartList));
 }
Ejemplo n.º 3
0
 public IEnumerable <Run> FindAll()
 {
     return(template.Query("select * from Run", MapRowToRun));
 }
Ejemplo n.º 4
0
 public IEnumerable <SplitTime> FindAll()
 {
     return(template.Query("select * from Splittime", MapRowToSplittime));
 }
 public IEnumerable <Communities> FindAllCommunities()
 {
     return(template.Query("select * from Communities", communityMapper));
 }
Ejemplo n.º 6
0
 public IEnumerable <Skier> FindAll()
 {
     return(template.Query("select * from skier", MapRowToSkier));
 }
 public IEnumerable <Measurements> FindAllMeasurements()
 {
     return(template.Query("select * from Measurements", measurementMapper));
 }
Ejemplo n.º 8
0
 public IEnumerable <Districts> FindAllDistricts()
 {
     return(template.Query("select * from District", districtMapper));
 }
Ejemplo n.º 9
0
 public IEnumerable <Users> FindAllUsers()
 {
     return(template.Query("select * from Users", userMapper));
 }
Ejemplo n.º 10
0
 public IEnumerable <Race> FindAll()
 {
     return(template.Query("select * from race where deleted = 0", MapRowToRace));
 }
Ejemplo n.º 11
0
 public IEnumerable <RaceType> FindAll()
 {
     return(template.Query("select * from racetype", MapRowToRaceType));
 }
 public IEnumerable <Stations> FindAllStations()
 {
     return(template.Query("select * from Stations", stationMapper).ToList());
 }
Ejemplo n.º 13
0
 public IEnumerable <Status> FindAll()
 {
     return(template.Query("select * from Status", MapRowToStatus));
 }
 public IEnumerable <Provinces> FindAllProvinces()
 {
     return(template.Query("select * from Province", provincesMapper));
 }