ATS.MVC.UI.Controllers.CodeTableController.Index C# (CSharp) 메소드

Index() 공개 메소드

public Index ( ) : System.Web.Mvc.ActionResult
리턴 System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            ViewBag.Message = "List Of CodeTable";
            IEnumerable<CodeTable> model = TimesheetRepository.GetCodeTables();
            return View(model);
        }