package repo
import (
"context"
"voucher/internal/biz/bo"
)
type ProductRepo interface {
GetByPNO(ctx context.Context, PNO string) (*bo.ProductBo, error)
}