public AddNewBookRequestBody(string token, AzureLibraryService.Book book)
 {
     this.token = token;
     this.book  = book;
 }
 public System.Threading.Tasks.Task <AzureLibraryService.AddNewBookResponse> AddNewBookAsync(string token, AzureLibraryService.Book book)
 {
     AzureLibraryService.AddNewBookRequest inValue = new AzureLibraryService.AddNewBookRequest();
     inValue.Body       = new AzureLibraryService.AddNewBookRequestBody();
     inValue.Body.token = token;
     inValue.Body.book  = book;
     return(((AzureLibraryService.LibraryServiceSoap)(this)).AddNewBookAsync(inValue));
 }