Rev 28166 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 26522 |
amit.gupta |
1 |
package com.spice.profitmandi.dao.cart;
|
|
|
2 |
|
|
|
3 |
import org.springframework.stereotype.Service;
|
|
|
4 |
|
|
|
5 |
@Service
|
|
|
6 |
public interface CartService {
|
|
|
7 |
CartModel addToCart(int cartId, int itemId, int quantity, float sellingPrice);
|
|
|
8 |
CartModel removeFromCart(int cartId, int itemId);
|
|
|
9 |
void clearCart(int cartId);
|
|
|
10 |
CartModel getCart(int cartId);
|
|
|
11 |
}
|