/// <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); }
/// <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); }
/// <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); }