Ejemplo n.º 1
0
        public RunResult createRunResult(RaceParticipant rp, TimeSpan?startTime, TimeSpan?endTime)
        {
            RunResult rr = new RunResult(rp);

            rr.SetStartTime(startTime);
            rr.SetFinishTime(endTime);
            return(rr);
        }