public ActionResult Index() { //Used to bind department dropdown List <DepartmentDomainModel> list = departmentBusiness.GetAllDepartment(); ViewBag.DepartmentList = new SelectList(list, "DepartmentId", "DepartmentName"); return(View()); }