CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/ViewModels/AssemblyViewModel.cs

29 lines
820 B
C#

using ComputerShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class AssemblyViewModel : IAssemblyModel
{
public int Id { get; set; }
[DisplayName("Название изделия")]
public string AssemblyName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> AssemblyComponents
{
get;
set;
} = new();
public int ClientId { get; set; }
[DisplayName("ФИО клиента")]
public string ClientFIO { get; set; } = string.Empty;
}
}