// GET: Bind controls to Update details      
        public ActionResult EditEmpDetails(int id)
        {
            EmpRepository EmpRepo = new EmpRepository();
            return View(EmpRepo.GetAllEmployees().Find(Emp => Emp.Empid == id));

        }
 // GET: Employee/GetAllEmpDetails      
 public ActionResult GetAllEmpDetails()
 {
     EmpRepository EmpRepo = new EmpRepository();
     return View(EmpRepo.GetAllEmployees());
 }