public ActionResult Edit(int id, Department department)
        {
            try
            {
                // TODO: Add update logic here
                m_repo.UpdateDepartment(department);

                m_repo.DeleteDepartment(m_repo.GetDepartmentById(id));

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }