AppController.cs

16 lines | 296 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace Web.Controllers
{
    public class AppController : Base.BaseController
    {
        public ActionResult Index()
        {
            return View();
        }        
    }
}