public async Task <ICollection <SchoolDistrict> > GetDistrictsAsync()
 {
     return(await _schoolDistrictRepository.GetAllAsync(GetCurrentSiteId()));
 }
Beispiel #2
0
 public async Task <ICollection <SchoolDistrict> > GetDistrictsAsync(
     bool excludeUserUnselectable = false)
 {
     return(await _schoolDistrictRepository.GetAllAsync(GetCurrentSiteId(),
                                                        excludeUserUnselectable));
 }