using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace DSWebMobile.Controllers { public class PaymentController : Controller { // // GET: /Payment/ public ActionResult PaymentList() { return View(); } public ActionResult PaymentInfo() { return View(); } } }