コード例 #1
0
        public void FinalPricePerMonth(PaymentCalculatorResponseModel response)
        {
            PaymentCalculatorViewModel paymentCalculatorViewModel = new PaymentCalculatorViewModel();

            paymentCalculatorViewModel.PricePerMonth = response.PricePerMonth;

            FrontEnd.PricePerMonthToText(paymentCalculatorViewModel);
        }
コード例 #2
0
 public void PricePerMonthToText(PaymentCalculatorViewModel paymentCalculatorView)
 {
     textBox_PricePerMonth.Text = paymentCalculatorView.PricePerMonth.ToString();
 }