using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace DSWebMobile.Controllers { public class SaleController : Controller { // // GET: /Sale/ public ActionResult SaleList() { return View(); } public ActionResult SaleInfo() { return View(); } } }