35 lines
745 B
C#
35 lines
745 B
C#
using HardwareShopContracts.ViewModels;
|
|
using HardwareShopDataModels.Models;
|
|
|
|
namespace HardwareShopContracts.BindingModels
|
|
{
|
|
public class GoodBindingModel : IGoodModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
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();
|
|
|
|
public List<ComponentViewModel> GoodComponentsComponents
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
|
|
public List<int> GoodComponentsCounts
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
}
|
|
}
|