コード例 #1
0
ファイル: EmpController.cs プロジェクト: mgerasim/Benzin
        //
        // GET: /Emp/

        public ActionResult Index()
        {
            List <Emp> theEmpList = Emp.GetAll();

            return(View(theEmpList));
        }