Could you tell me please, how to get SKU price with discounts for a specified user?I work with Kentico from console application through C# API.CMS.DataEngine.CMSApplication.Init();
var sku = SKUInfoProvider.GetSKUInfo(5069);
var price = SKUInfoProvider.GetSKUPrice(sku, null, true, false);
So, I want to apply user discounts for a price. I need to execute this method from specified user context, I guess.
Thanks in advance!
↧