示例#1
0
        public ActionResult PostPayment()
        {
            var model   = pth.GetAllPaymentTypes();
            var payment = new Payment
            {
                PaymentTypes = model
            };

            return(View(payment));
        }
示例#2
0
 // GET: PaymentType
 public ActionResult Index()
 {
     return(View(pth.GetAllPaymentTypes()));
 }