| Line 356... |
Line 356... |
| 356 |
Promotion getPromotionById(1:i64 promotionId) throws (1:PromotionException pex),
|
356 |
Promotion getPromotionById(1:i64 promotionId) throws (1:PromotionException pex),
|
| 357 |
void generateCouponsForPromotion(1:i64 promotionId, 2:string couponCode) throws (1:PromotionException pex),
|
357 |
void generateCouponsForPromotion(1:i64 promotionId, 2:string couponCode) throws (1:PromotionException pex),
|
| 358 |
Cart applyCoupon(1:string couponCode, 2:i64 cartId) throws (1:PromotionException pex),
|
358 |
Cart applyCoupon(1:string couponCode, 2:i64 cartId) throws (1:PromotionException pex),
|
| 359 |
map<i64,double> getEmiDiscount(1:i64 cartId) throws (1:PromotionException pex),
|
359 |
map<i64,double> getEmiDiscount(1:i64 cartId) throws (1:PromotionException pex),
|
| 360 |
map<i64, string> applyRechargeCoupon(1:string couponCode, 2:i64 totalAmount, 3:i64 userId) throws (1:PromotionException pex),
|
360 |
map<i64, string> applyRechargeCoupon(1:string couponCode, 2:i64 totalAmount, 3:i64 userId) throws (1:PromotionException pex),
|
| 361 |
void trackCouponUsage(1:string couponCode, 2:i64 transactionId, 3:i64 userId) throws (1:PromotionException pex),
|
361 |
void trackCouponUsage(1:string couponCode, 2:i64 transactionId, 3:i64 userId, 4:i64 amount, 5:bool isDigital) throws (1:PromotionException pex),
|
| 362 |
i64 getCouponUsageCountByUser(1:string couponCode, 2:i64 userId) throws (1:PromotionException pex),
|
362 |
i64 getCouponUsageCountByUser(1:string couponCode, 2:i64 userId) throws (1:PromotionException pex),
|
| 363 |
list<Coupon> getActiveCodes(1:i64 promotionId) throws (1:PromotionException pex),
|
363 |
list<Coupon> getActiveCodes(1:i64 promotionId) throws (1:PromotionException pex),
|
| 364 |
void deleteCoupon(1:string couponCode) throws (1:PromotionException pex),
|
364 |
void deleteCoupon(1:string couponCode) throws (1:PromotionException pex),
|
| 365 |
list<Coupon> getAllCouponsByPromotionId(1:i64 promotionId) throws (1:PromotionException pex),
|
365 |
list<Coupon> getAllCouponsByPromotionId(1:i64 promotionId) throws (1:PromotionException pex),
|
| 366 |
|
366 |
|