using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace DSWebMobile.Controllers { public class ProfitController : Controller { // // GET: /Profit/ public ActionResult ProfitList() { return View(); } public ActionResult ProfitInfo() { return View(); } } }