Exemplo n.º 1
0
        public void FinalPricePerMonth(PaymentCalculatorResponseModel response)
        {
            PaymentCalculatorViewModel paymentCalculatorViewModel = new PaymentCalculatorViewModel();

            paymentCalculatorViewModel.PricePerMonth = response.PricePerMonth;

            FrontEnd.PricePerMonthToText(paymentCalculatorViewModel);
        }
Exemplo n.º 2
0
 public void PricePerMonthToText(PaymentCalculatorViewModel paymentCalculatorView)
 {
     textBox_PricePerMonth.Text = paymentCalculatorView.PricePerMonth.ToString();
 }