public ActionResult AddEmployee(int EmpNo = 0) { GetEmployeeListData(); // ViewBag.PCountryDD = Common.GetCountryMst(); // ViewBag.PStateDD = Common.GetStateMst(); // ViewBag.PCityDD = Common.GetCityMst(); Employee obj = new Employee(); if (EmpNo != 0) { obj = EmpCls.GetEmployee(EmpNo); } return(View(obj)); }
public ActionResult ManageEmployee() { return(View(EmpCls.GetEmployee())); }