public ActionResult Index() { var bal = new EmployeeBAL(); var model = new List <EmployeeModel>(); model = bal.EmpList(); return(View(model)); }