public IActionResult Create()
        {
            List <Department> ListDepartment = new List <Department>();

            ListDepartment = _departmentData.GetAllDepartmentList();

            ViewBag.DepartmentListData = ListDepartment;
            return(View());
        }