-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMisoApiBooksClient.h
More file actions
31 lines (24 loc) · 992 Bytes
/
MisoApiBooksClient.h
File metadata and controls
31 lines (24 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// MisoApiBooksClient.h
// Sonata
//
// Created by HEENA RASTOGI on 4/20/12.
// Copyright (c) 2012 Miso Media. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MisoApiClientProtocol.h"
@interface MisoApiBooksClient : NSObject
@property (nonatomic, assign) id<MisoApiClientProtocol> delegate;
- (void)getFeaturedBooksForPageNumber:(NSNumber *)pageNumber
itemCount:(NSNumber *)numberOfItems
andCallback:(void (^)(id))handler;
- (void)getTopBooksForPageNumber:(NSNumber *)pageNumber
itemCount:(NSNumber *)numberOfItems
andCallback:(void (^)(id))handler;
- (void)getScoresForBookWithId:(NSNumber *)bookId
andCallback:(void (^)(id))handler;
- (void)getBookWithId:(NSNumber *)book_id
andCallback:(void(^)(id))handler;
- (void)searchBooksWithParameters:(NSDictionary *)params
andCallback:(void(^)(id))handler;
@end