示例#1
0
文件: Reference.cs 项目: Sobiech/zut
 public BooksClient.BookManagerService.book searchByISBN(string isbn)
 {
     BooksClient.BookManagerService.searchByISBNRequest inValue = new BooksClient.BookManagerService.searchByISBNRequest();
     inValue.isbn = isbn;
     BooksClient.BookManagerService.searchByISBNResponse retVal = ((BooksClient.BookManagerService.BookManager)(this)).searchByISBN(inValue);
     return(retVal.book);
 }
示例#2
0
文件: Reference.cs 项目: Sobiech/zut
 public System.Threading.Tasks.Task <BooksClient.BookManagerService.searchByISBNResponse> searchByISBNAsync(string isbn)
 {
     BooksClient.BookManagerService.searchByISBNRequest inValue = new BooksClient.BookManagerService.searchByISBNRequest();
     inValue.isbn = isbn;
     return(((BooksClient.BookManagerService.BookManager)(this)).searchByISBNAsync(inValue));
 }
示例#3
0
文件: Reference.cs 项目: Sobiech/zut
 System.Threading.Tasks.Task <BooksClient.BookManagerService.searchByISBNResponse> BooksClient.BookManagerService.BookManager.searchByISBNAsync(BooksClient.BookManagerService.searchByISBNRequest request)
 {
     return(base.Channel.searchByISBNAsync(request));
 }
示例#4
0
文件: Reference.cs 项目: Sobiech/zut
 BooksClient.BookManagerService.searchByISBNResponse BooksClient.BookManagerService.BookManager.searchByISBN(BooksClient.BookManagerService.searchByISBNRequest request)
 {
     return(base.Channel.searchByISBN(request));
 }