示例#1
0
        public Point CopyToPoint(TennisPrices.VjekosPoint PointToCopy)
        {
            this.BFMarket     = this.BFMarket.CopyToMarket(PointToCopy.BFMarket);
            this.CurrentScore = this.CurrentScore.CopyToScore(PointToCopy.CurrentScore);
            this.PlayerWon    = PointToCopy.PlayerWon;
            this.Type         = PointToCopy.Type;

            return(this);
        }
示例#2
0
        public TennisPrices.VjekosPoint CopyToVP()
        {
            TennisPrices.VjekosPoint Result = new TennisPrices.VjekosPoint();
            Result.BFMarket     = this.BFMarket.CopyToVM();
            Result.CurrentScore = this.CurrentScore.CopyToVS();
            Result.PlayerWon    = this.PlayerWon;
            Result.Type         = this.Type;

            return(Result);
        }