public ActionResult RetrieveProjectStatusReasonDetail(ProjectDashboardPresenter presenter, string projectPortalId)
        {
            ModelState.Clear();
            if (presenter != null)
            {
                var projectId = Convert.ToInt32(projectPortalId, CultureInfo.CurrentCulture);

                presenter.AssignProjectStatusReason(this.projectService.RetrieveProjectStatusReason(projectId, SessionData.Instance.UserInfo.Developer.DeveloperID));
            }

            return this.PartialView(ProjectStatusReasonContainerPartialView, presenter);
        }