예제 #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));
 }