public IActionResult Details(int departmentId)
        {
            DepartmentsViewModel model = new DepartmentsViewModel();

            model.LoadDeatilsData(departmentId, _unitOfWork);
            return(View(model));
        }