Exemple #1
0
 public IList <GetAvailableSiteSummaryResponse> GetAvailableSiteSummaries(int admUserID, bool showInact, bool includeDistrict, bool excludeCEP, bool CEPOnly, int?MenAgeGroupID, bool showSchoolGroups, bool showAllSelection)
 {
     return(_sitesLogic.GetAvailableSiteSummaries(admUserID, showInact, includeDistrict, excludeCEP, CEPOnly, MenAgeGroupID, showSchoolGroups, showAllSelection));
 }
Exemple #2
0
 public ActionResult <IList <GetAvailableSiteSummaryResponse> > GetAvailableSiteSummaries(int admUserID, bool showInact, bool includeDistrict, bool excludeCEP = false, bool CEPOnly = false, int?MenAgeGroupID = null, bool showSchoolGroups = false, bool showAllSelection = false)
 {
     return(_sitesLogic.GetAvailableSiteSummaries(admUserID, showInact, includeDistrict, excludeCEP, CEPOnly, MenAgeGroupID, showSchoolGroups, showAllSelection).ToList());
 }