GetXSchoolsByXLea() public method

Returns Schools associated to a specific Lea by refId
public GetXSchoolsByXLea ( string refId ) : ResponseMulti
refId string
return ResponseMulti
 //RETURN SCHOOLS BY LEA
 public static void XSchools_GetXSchoolsByXLeaLastPage(XPress xPress)
 {
     for (int i = 1; i <= xPress.GetLastPage(navigationPageSize, XPress.ServicePath.GetXSchoolsByXLea, refId); i++)
     {
         foreach (XSchoolType school in xPress.GetXSchoolsByXLea(refId, i, navigationPageSize).Data)
         {
             Console.WriteLine("refId: " + school.refId);
             Console.WriteLine("leaRefId: " + school.leaRefId);
             Console.WriteLine("localId: " + school.localId);
             Console.WriteLine("stateProvinceId: " + school.stateProvinceId);
             Console.WriteLine("##### BEGIN OTHERIDS #####");
             foreach (XOtherOrganizationIdType id in school.otherIds.otherId)
             {
                 Console.WriteLine("otherId id" + id.id);
                 Console.WriteLine("type: " + id.type);
             }
             Console.WriteLine("##### END OTHERIDS #####");
             Console.WriteLine("schoolName: " + school.schoolName);
             Console.WriteLine("##### BEGIN GRADELEVELS #####");
             foreach (String gl in school.gradeLevels.gradeLevel)
             {
                 Console.WriteLine("gradeLevel: " + gl);
             }
             Console.WriteLine("##### END GRADELEVELS #####");
             Console.WriteLine("##### BEGIN ADDRESS #####");
             Console.WriteLine("addressType: " + school.address.addressType);
             Console.WriteLine("city: " + school.address.city);
             Console.WriteLine("line1: " + school.address.line1);
             Console.WriteLine("line2: " + school.address.line2);
             Console.WriteLine("countryCode: " + school.address.countryCode);
             Console.WriteLine("postalCode: " + school.address.postalCode);
             Console.WriteLine("stateProvince: " + school.address.stateProvince);
             Console.WriteLine("##### END ADDRESS #####");
             Console.WriteLine("##### BEGIN PHONENUMBER #####");
             Console.WriteLine("number: " + school.phoneNumber.number);
             Console.WriteLine("phoneNumberType: " + school.phoneNumber.phoneNumberType);
             Console.WriteLine("primaryIndicator: " + school.phoneNumber.primaryIndicator);
             Console.WriteLine("##### END PHONENUMBER #####");
             Console.WriteLine("##### BEGIN OTHERPHONENUMBER #####");
             foreach (XTelephoneType p in school.otherPhoneNumbers.phoneNumber)
             {
                 Console.WriteLine("otherPhoneNumbers number: " + p.number);
                 Console.WriteLine("phoneNumberType: " + p.phoneNumberType);
                 Console.WriteLine("primaryIndicator: " + p.primaryIndicator);
             }
             Console.WriteLine("##### END OTHERPHONENUMBER #####");
             Console.WriteLine("========================================");
         }
         Console.WriteLine("######## PAGE " + i + " ########");
     }
 }