package server

type CartService interface {
	CartAdd(int, int, int, bool) (interface{}, error)
	CartRemove(int, []int) (interface{}, error)
	CartClear(int) (interface{}, error)
	CartList(int) (interface{}, error)
	ZFB_CartList(customId int) (interface{}, error)
}