Exemple #1
0
 public static async Task AddTierPricesToProduct(ProductDto product, ProductTierPriceDto tierPrice)
 {
     await product.CreateProductTierPrice(tierPrice.Quantity, tierPrice.Price, "", "", tierPrice.StartDateTimeUtc, tierPrice.EndDateTimeUtc).GetValueAsync();
 }