Ejemplo n.º 1
0
 /// <summary>
 /// Gets the race participants.
 /// </summary>
 /// <param name="raceResult">WolferhamptonRaceModel model.</param>
 /// <returns>list of participants</returns>
 private List <Participant> GetHorseRaceParticipants(WolferhamptonRaceModel model)
 {
     return(model.RawData.Participants);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets the list of markets after null checks.
 /// </summary>
 /// <param name="raceResult">WolferhamptonRaceModel model.</param>
 /// <returns>list of market</returns>
 private List <Market> MarketList(WolferhamptonRaceModel model)
 {
     return(model.RawData.Markets);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Gets the name of the race.
 /// </summary>
 /// <param name="raceResult">WolferhamptonRaceModel model.</param>
 /// <returns>Name of the race</returns>
 private string GetRaceName(WolferhamptonRaceModel model)
 {
     return(model.RawData.FixtureName);
 }