static internal TrackPoint ToTrackPoint(this WCFTrackPoint o) { TrackPoint result = new TrackPoint(); result.Id = o.Id; result.TrackType = o.TrackType; result.GamePoint = o.GamePoint; result.Value = o.Value; return(result); }
public WCFTrackPoint ToWCFTrackPoint() { WCFTrackPoint result = new WCFTrackPoint(); result.Id = this.Id; result.TrackType = this.TrackType; result.GamePoint = this.GamePoint; result.Value = this.Value; return(result); }