This commit is contained in:
Joey Schluchter 2021-09-23 11:06:11 -05:00
Родитель d036878e0f
Коммит 838e092886
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -70,7 +70,8 @@ namespace RedDog.OrderService.Controllers
ProductName = product.ProductName,
Quantity = orderItem.Quantity,
UnitCost = product.UnitCost,
UnitPrice = product.UnitPrice
UnitPrice = product.UnitPrice,
ImageUrl = product.ImageUrl
});
}

Просмотреть файл

@ -18,5 +18,8 @@ namespace RedDog.OrderService.Models
[JsonPropertyName("unitPrice")]
public decimal UnitPrice { get; set; }
[JsonPropertyName("imageUrl")]
public string ImageUrl { get; set; }
}
}