Esempio n. 1
0
        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);
        }
Esempio n. 2
0
        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);
        }