2023-04-23 16:43:54 +04:00
|
|
|
|
using SofrwareInstallationContracts.Attributes;
|
|
|
|
|
using SoftwareInstallationDataModels.Models;
|
2023-01-29 22:45:01 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2023-01-30 14:48:39 +04:00
|
|
|
|
namespace SofrwareInstallationContracts.ViewModels
|
2023-01-29 22:45:01 +04:00
|
|
|
|
{
|
|
|
|
|
public class PackageViewModel : IPackageModel
|
|
|
|
|
{
|
2023-04-23 16:43:54 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-01-29 22:45:01 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2023-04-23 16:43:54 +04:00
|
|
|
|
[Column("Название изделия", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-01-29 22:45:01 +04:00
|
|
|
|
public string PackageName { get; set; }=string.Empty;
|
|
|
|
|
|
2023-04-23 16:43:54 +04:00
|
|
|
|
[Column("Цена", width: 100)]
|
2023-01-29 22:45:01 +04:00
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
|
2023-04-23 16:43:54 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-01-29 22:45:01 +04:00
|
|
|
|
public Dictionary<int, (IComponentModel, int)> PackageComponents { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|