ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/ViewModels/PackageViewModel.cs

24 lines
828 B
C#
Raw Normal View History

2024-06-17 19:27:42 +04:00
using SoftwareInstallationContracts.Attributes;
using SoftwareInstallationDataModels.Models;
2024-04-07 16:54:02 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationContracts.ViewModels
{
2024-06-17 19:27:42 +04:00
public class RepairViewModel : IRepairModel
2024-04-07 16:54:02 +04:00
{
2024-06-17 19:27:42 +04:00
[Column(visible: false)]
2024-04-07 16:54:02 +04:00
public int Id { get; set; }
2024-06-17 19:27:42 +04:00
[Column(title: "Название ремонта", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string RepairName { get; set; } = string.Empty;
[Column(title: "Цена", width: 100)]
2024-04-07 16:54:02 +04:00
public double Price { get; set; }
2024-06-17 19:27:42 +04:00
[Column(visible: false)]
public Dictionary<int, (IComponentModel, int)> RepairComponents { get; set; } = new();
2024-04-07 16:54:02 +04:00
}
}