public ActionResult GetIdentifiedBy(string selectedSiteIDs, string programIDs, string coPIDs, string tagIDs)
        {
            try
            {
                programIDs = programIDs == "-1" ? null : programIDs;
                coPIDs     = coPIDs == "-1" ? null : coPIDs;
                tagIDs     = tagIDs == "-1" ? null : tagIDs;

                return(PartialView("Search/_IdentifiedBy", CMSService.GetIdentifiedUsers(selectedSiteIDs, programIDs, coPIDs, tagIDs)));
            }
            catch (Exception ex)
            {
                ExceptionLog exceptionLog = new ExceptionLog
                {
                    ExceptionText = "Reports: " + ex.Message,
                    PageName      = "CorporateReportController",
                    MethodName    = "GetMultiSiteTags",
                    UserID        = Convert.ToInt32(AppSession.UserID),
                    SiteId        = Convert.ToInt32(AppSession.SelectedSiteId),
                    TransSQL      = "",
                    HttpReferrer  = null
                };
                exceptionService.LogException(exceptionLog);

                return(RedirectToAction("Error", "Transfer"));
            }
        }