Example #1
0
 public bool Checkout(Library.Model.Checkout checkout1, bool updateSubscriber, out System.Nullable <System.DateTime> checkedout)
 {
     LendingLibrary.Client.LibraryService.CheckoutRequest inValue = new LendingLibrary.Client.LibraryService.CheckoutRequest();
     inValue.checkout         = checkout1;
     inValue.updateSubscriber = updateSubscriber;
     LendingLibrary.Client.LibraryService.CheckoutResponse retVal = ((LendingLibrary.Client.LibraryService.ILibraryService)(this)).Checkout(inValue);
     checkedout = retVal.checkedout;
     return(retVal.CheckoutResult);
 }
Example #2
0
 public System.Threading.Tasks.Task <LendingLibrary.Client.LibraryService.CheckoutResponse> CheckoutAsync(LendingLibrary.Client.LibraryService.CheckoutRequest request)
 {
     return(base.Channel.CheckoutAsync(request));
 }
Example #3
0
 LendingLibrary.Client.LibraryService.CheckoutResponse LendingLibrary.Client.LibraryService.ILibraryService.Checkout(LendingLibrary.Client.LibraryService.CheckoutRequest request)
 {
     return(base.Channel.Checkout(request));
 }