binding model + client

This commit is contained in:
VictoriaPresnyakova 2023-04-01 20:47:44 +04:00
parent 6e3dca19de
commit 6716b74d72
2 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,7 @@ namespace JewelryStoreContracts.BindingModels
public int JewelId { get; set; }
public int ClientId { get; set; }
public string JewelName { get; set; } = string.Empty;
public string JewelName { get; set; }
public int Count { get; set; }
public double Sum { get; set; }
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;

View File

@ -14,6 +14,8 @@ namespace JewelryStoreListImplement.Models
{
public int JewelId { get; private set; }
public string JewelName { get; private set; }
public int ClientId { get; private set; }
public int Count { get; private set; }