Subversion Repositories SmartDukaan

Rev

Rev 6962 | Rev 7256 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6962 Rev 7190
Line 160... Line 160...
160
    1:string bannerName,
160
    1:string bannerName,
161
    2:string mapLink,
161
    2:string mapLink,
162
    3:string coordinates
162
    3:string coordinates
163
}
163
}
164
 
164
 
-
 
165
struct FreebieItem {
-
 
166
	1:i64 itemId,
-
 
167
	2:i64 freebieItemId
-
 
168
}
-
 
169
 
165
service CatalogService extends GenericService.GenericService{
170
service CatalogService extends GenericService.GenericService{
166
 
171
 
167
/**
172
/**
168
	Availability and inventory attributes	
173
	Availability and inventory attributes	
169
*/
174
*/
Line 412... Line 417...
412
	
417
	
413
	Insurer getInsurer(1:i64 insurerId),
418
	Insurer getInsurer(1:i64 insurerId),
414
	
419
	
415
	list<Insurer> getAllInsurers(),
420
	list<Insurer> getAllInsurers(),
416
	
421
	
417
	void updateInsuranceDeclaredAmount(1:i64 insurerId, 2:double amount)
422
	void updateInsuranceDeclaredAmount(1:i64 insurerId, 2:double amount),
-
 
423
	
-
 
424
	i64 getFreebieForItem(1:i64 itemId),
-
 
425
	
-
 
426
	void addOrUpdateFreebieForItem(1:FreebieItem freebieItem)
418
}
427
}