2024-03-23 14:18:27 +04:00
|
|
|
|
using CarRepairShopDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-05-17 00:53:12 +04:00
|
|
|
|
using CarRepairShopContracts.Attributes;
|
2024-03-23 14:18:27 +04:00
|
|
|
|
|
|
|
|
|
namespace CarRepairShopContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class RepairViewModel : IRepairModel
|
|
|
|
|
{
|
2024-05-17 00:53:12 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-03-23 14:18:27 +04:00
|
|
|
|
public int Id { get; set; }
|
2024-05-17 00:53:12 +04:00
|
|
|
|
[Column(title: "Название ремонта", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-03-23 14:18:27 +04:00
|
|
|
|
public string RepairName { get; set; } = string.Empty;
|
2024-05-17 00:53:12 +04:00
|
|
|
|
[Column(title: "Цена", width: 150)]
|
2024-03-23 14:18:27 +04:00
|
|
|
|
public double Price { get; set; }
|
2024-05-17 00:53:12 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-03-23 14:18:27 +04:00
|
|
|
|
public Dictionary<int, (IComponentModel, int)> RepairComponents
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|