Exemplo n.º 1
0
        public ActionResult PostPayment()
        {
            var model   = pth.GetAllPaymentTypes();
            var payment = new Payment
            {
                PaymentTypes = model
            };

            return(View(payment));
        }
Exemplo n.º 2
0
 // GET: PaymentType
 public ActionResult Index()
 {
     return(View(pth.GetAllPaymentTypes()));
 }