27 lines
846 B
C#
27 lines
846 B
C#
using PrecastConcretePlantContracts.Attributes;
|
|
using PrecastConcretePlantDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PrecastConcretePlantContracts.ViewModels
|
|
{
|
|
public class ReinforcedViewModel : IReinforcedModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
|
|
[Column(title: "Название изделия", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string ReinforcedName { get; set; } = string.Empty;
|
|
|
|
[Column(title: "Цена", width: 70)]
|
|
public double Price { get; set; }
|
|
|
|
[Column(visible: false)]
|
|
public Dictionary<int, (IComponentModel, int)> ReinforcedComponents { get; set; } = new();
|
|
}
|
|
}
|