public IA_06.Spells.Spell[] searchBySchool(string school)
 {
     IA_06.Spells.searchBySchoolRequest inValue = new IA_06.Spells.searchBySchoolRequest();
     inValue.school = school;
     IA_06.Spells.searchBySchoolResponse retVal = ((IA_06.Spells.SpellManager)(this)).searchBySchool(inValue);
     return(retVal.spell);
 }
 IA_06.Spells.searchBySchoolResponse IA_06.Spells.SpellManager.searchBySchool(IA_06.Spells.searchBySchoolRequest request)
 {
     return(base.Channel.searchBySchool(request));
 }
 public System.Threading.Tasks.Task <IA_06.Spells.searchBySchoolResponse> searchBySchoolAsync(string school)
 {
     IA_06.Spells.searchBySchoolRequest inValue = new IA_06.Spells.searchBySchoolRequest();
     inValue.school = school;
     return(((IA_06.Spells.SpellManager)(this)).searchBySchoolAsync(inValue));
 }
 System.Threading.Tasks.Task <IA_06.Spells.searchBySchoolResponse> IA_06.Spells.SpellManager.searchBySchoolAsync(IA_06.Spells.searchBySchoolRequest request)
 {
     return(base.Channel.searchBySchoolAsync(request));
 }