2024-02-10 02:12:37 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using ComputersShopDataModels.Models;
|
2024-05-16 23:13:47 +04:00
|
|
|
|
using ComputersShopContracts.Attributes;
|
2024-02-10 02:12:37 +04:00
|
|
|
|
|
|
|
|
|
namespace ComputersShopContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ComputerViewModel: IComputerModel
|
|
|
|
|
{
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-02-10 02:12:37 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column("Название компьютера", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-02-10 02:12:37 +04:00
|
|
|
|
public string ComputerName { get; set; } = string.Empty;
|
|
|
|
|
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column("Цена", width: 100)]
|
2024-02-10 02:12:37 +04:00
|
|
|
|
public double Price { get; set; }
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-02-10 02:12:37 +04:00
|
|
|
|
public Dictionary<int, (IComponentModel, int)> ComputerComponents { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|