2023-01-30 21:21:58 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using PrecastConcretePlantDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
2023-04-22 23:14:25 +04:00
|
|
|
|
using PrecastConcretePlantContracts.Attributes;
|
2023-01-30 21:21:58 +04:00
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReinforcedViewModel : IReinforcedModel
|
|
|
|
|
{
|
2023-04-22 23:14:25 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-01-30 21:21:58 +04:00
|
|
|
|
public int Id { get; set; }
|
2023-04-22 23:14:25 +04:00
|
|
|
|
[Column("Название изделия", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-01-30 21:21:58 +04:00
|
|
|
|
public string ReinforcedName { get; set; } = string.Empty;
|
2023-04-22 23:14:25 +04:00
|
|
|
|
[Column("Цена", width: 100)]
|
2023-01-30 21:21:58 +04:00
|
|
|
|
public double Price { get; set; }
|
2023-04-22 23:14:25 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-01-30 21:21:58 +04:00
|
|
|
|
public Dictionary<int, (IComponentModel, int)> ReinforcedComponents
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
2023-04-23 21:36:36 +04:00
|
|
|
|
} = new();
|
2023-01-30 21:21:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|