2023-04-01 16:33:03 +04:00
|
|
|
|
using HardwareShopDataModels.Models;
|
2023-04-01 12:58:12 +04:00
|
|
|
|
|
2023-04-01 13:12:37 +04:00
|
|
|
|
namespace HardwareShopContracts.BindingModels
|
2023-04-01 12:58:12 +04:00
|
|
|
|
{
|
|
|
|
|
public class GoodBindingModel : IGoodModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2023-04-01 16:33:03 +04:00
|
|
|
|
|
|
|
|
|
public string GoodName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
|
|
|
|
|
public int UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<int, (IComponentModel, int)> GoodComponents
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
2023-04-01 12:58:12 +04:00
|
|
|
|
}
|
|
|
|
|
}
|