public ActionResult GetEPAssignedBy(string selectedSiteIDs, string EPUserRoleID, string programIDs = "-1", string chapterIDs = "-1", string standardIDs = "-1")
 {
     Services.EPAssignment epService = new Services.EPAssignment();
     return(PartialView("Search/_EPAssignedBy", epService.GetEPAssignedBy(selectedSiteIDs, EPUserRoleID, programIDs, chapterIDs, standardIDs)));
 }
 public ActionResult GetEPAssignedTo(string selectedSiteIDs, string EPUserRoleID, string programIDs = "-1", string chapterIDs = "-1", string standardIDs = "-1", bool IncludeInActiveTagForUsers = false)
 {
     Services.EPAssignment epService = new Services.EPAssignment();
     return(PartialView("Search/_EPAssignedTo", epService.GetEPAssignedTo(selectedSiteIDs, EPUserRoleID, programIDs, chapterIDs, standardIDs, IncludeInActiveTagForUsers)));
 }