Subversion Repositories SmartDukaan

Rev

Rev 18150 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18150 Rev 21864
Line 1... Line 1...
1
package in.shop2020.catalog.dashboard.client;
1
package in.shop2020.catalog.dashboard.client;
2
 
2
 
3
 
3
 
-
 
4
import java.util.List;
-
 
5
import java.util.Map;
-
 
6
 
-
 
7
import com.google.gwt.user.client.rpc.AsyncCallback;
-
 
8
 
4
import in.shop2020.catalog.dashboard.shared.BulkItemPricing;
9
import in.shop2020.catalog.dashboard.shared.BulkItemPricing;
-
 
10
import in.shop2020.catalog.dashboard.shared.CategoryHsnCode;
5
import in.shop2020.catalog.dashboard.shared.Item;
11
import in.shop2020.catalog.dashboard.shared.Item;
6
import in.shop2020.catalog.dashboard.shared.ItemInventory;
12
import in.shop2020.catalog.dashboard.shared.ItemInventory;
7
import in.shop2020.catalog.dashboard.shared.ItemStatus;
13
import in.shop2020.catalog.dashboard.shared.ItemStatus;
8
import in.shop2020.catalog.dashboard.shared.ItemWarehouse;
14
import in.shop2020.catalog.dashboard.shared.ItemWarehouse;
9
import in.shop2020.catalog.dashboard.shared.StateVat;
15
import in.shop2020.catalog.dashboard.shared.StateVat;
10
 
16
 
11
import java.util.List;
-
 
12
import java.util.Map;
-
 
13
 
-
 
14
import com.google.gwt.user.client.rpc.AsyncCallback;
-
 
15
 
17
 
16
/**
18
/**
17
 * The async counterpart of <code>CatalogService</code>.
19
 * The async counterpart of <code>CatalogService</code>.
18
 */
20
 */
19
public interface CatalogServiceAsync {
21
public interface CatalogServiceAsync {
Line 90... Line 92...
90
	
92
	
91
	void addBulkPricingForItem(BulkItemPricing bulkItemPricing, AsyncCallback<BulkItemPricing> callback);
93
	void addBulkPricingForItem(BulkItemPricing bulkItemPricing, AsyncCallback<BulkItemPricing> callback);
92
	void getBulkPricingByItemId(long item_id, AsyncCallback<List<BulkItemPricing>> callback);
94
	void getBulkPricingByItemId(long item_id, AsyncCallback<List<BulkItemPricing>> callback);
93
	void deleteBulkPricingForItemById(long id,  AsyncCallback<Boolean> asyncCallback);
95
	void deleteBulkPricingForItemById(long id,  AsyncCallback<Boolean> asyncCallback);
94
	void deleteBulkPricingForItem(long itemId, AsyncCallback<Boolean> asyncCallback);
96
	void deleteBulkPricingForItem(long itemId, AsyncCallback<Boolean> asyncCallback);
-
 
97
	void getHsnCodesByCategoryId(int categoryId, AsyncCallback<List<CategoryHsnCode>> asyncCallback);
95
}
98
}