예제 #1
0
 public bool List(string searchKey, out Library.Model.Book[] books)
 {
     LendingLibrary.Client.LibraryService.ListRequest inValue = new LendingLibrary.Client.LibraryService.ListRequest();
     inValue.searchKey = searchKey;
     LendingLibrary.Client.LibraryService.ListResponse retVal = ((LendingLibrary.Client.LibraryService.ILibraryService)(this)).List(inValue);
     books = retVal.books;
     return(retVal.ListResult);
 }
예제 #2
0
 public System.Threading.Tasks.Task <LendingLibrary.Client.LibraryService.ListResponse> ListAsync(LendingLibrary.Client.LibraryService.ListRequest request)
 {
     return(base.Channel.ListAsync(request));
 }
예제 #3
0
 LendingLibrary.Client.LibraryService.ListResponse LendingLibrary.Client.LibraryService.ILibraryService.List(LendingLibrary.Client.LibraryService.ListRequest request)
 {
     return(base.Channel.List(request));
 }