Exemple #1
0
 public bool Read(string key, out Library.Model.Book book)
 {
     LendingLibrary.Client.LibraryService.ReadRequest inValue = new LendingLibrary.Client.LibraryService.ReadRequest();
     inValue.key = key;
     LendingLibrary.Client.LibraryService.ReadResponse retVal = ((LendingLibrary.Client.LibraryService.ILibraryService)(this)).Read(inValue);
     book = retVal.book;
     return(retVal.ReadResult);
 }
Exemple #2
0
 public System.Threading.Tasks.Task <LendingLibrary.Client.LibraryService.ReadResponse> ReadAsync(LendingLibrary.Client.LibraryService.ReadRequest request)
 {
     return(base.Channel.ReadAsync(request));
 }
Exemple #3
0
 LendingLibrary.Client.LibraryService.ReadResponse LendingLibrary.Client.LibraryService.ILibraryService.Read(LendingLibrary.Client.LibraryService.ReadRequest request)
 {
     return(base.Channel.Read(request));
 }