public System.Threading.Tasks.Task <MyLibrary.ReturnBookResponse> ReturnBookAsync(string token, int bookId)
 {
     MyLibrary.ReturnBookRequest inValue = new MyLibrary.ReturnBookRequest();
     inValue.Body        = new MyLibrary.ReturnBookRequestBody();
     inValue.Body.token  = token;
     inValue.Body.bookId = bookId;
     return(((MyLibrary.LibraryServiceSoap)(this)).ReturnBookAsync(inValue));
 }
 System.Threading.Tasks.Task <MyLibrary.ReturnBookResponse> MyLibrary.LibraryServiceSoap.ReturnBookAsync(MyLibrary.ReturnBookRequest request)
 {
     return(base.Channel.ReturnBookAsync(request));
 }