зеркало из https://github.com/Azure/reddog-code.git
update orders to add imageurl
This commit is contained in:
Родитель
d036878e0f
Коммит
838e092886
|
@ -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; }
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче