//******************************************//



        public ActionResult ReviewStationeryRequest()
        {
            string      username    = Session["username"].ToString();
            EmployeeDAO employeeDAO = new EmployeeDAO();
            Employee    employee    = employeeDAO.GetEmployeeByUsername(username);
            RequestDAO  reqlist     = new RequestDAO();

            ViewData["reqlist"] = reqlist.GetRequestList(employee.DepartmentId);
            return(View());
        }