Beispiel #1
0
        public ActionResult Index()
        {
            var bal   = new EmployeeBAL();
            var model = new List <EmployeeModel>();

            model = bal.EmpList();
            return(View(model));
        }