public WCFTokenPoint ToWCFTokenPoint() { WCFTokenPoint result = new WCFTokenPoint(); result.Id = this.Id; result.Terrain = this.Terrain; result.GamePoint = this.GamePoint; result.TokenType = this.TokenType; return(result); }
static internal TokenPoint ToTokenPoint(this WCFTokenPoint o) { TokenPoint result = new TokenPoint(); result.Id = o.Id; result.Terrain = o.Terrain; result.GamePoint = o.GamePoint; result.TokenType = o.TokenType; return(result); }