Hello,
I know I can get a product price using this method :
var defaultPriceProvider = new DefaultPriceProvider();
var userPrice = defaultPriceProvider.FindPrice(product, quantity, variantId, currency, unitId, user);
However, this only gives me a PriceRaw object. How to I get the actual Price object that is being used there ? Specifically, I need to know if this price is the result of a UserGroup-specific price or not.
Thank you.