private void FinishMustMatchLastTrackpoint(AddStartFinishResponse result)
 {
     result.Route.CoursePoints.Last().TimeStamp.ShouldBe(_times.Last());
     result.Route.CoursePoints.Last().Lattitude.ShouldBe(_la.Last());
     result.Route.CoursePoints.Last().Longitude.ShouldBe(_lo.Last());
 }
 private void StartMustMatch1stTrackpoint(AddStartFinishResponse result)
 {
     result.Route.CoursePoints[0].TimeStamp.ShouldBe(_times[0]);
     result.Route.CoursePoints[0].Lattitude.ShouldBe(_la[0]);
     result.Route.CoursePoints[0].Longitude.ShouldBe(_lo[0]);
 }