2023-04-01 12:26:05 +04:00
|
|
|
|
using HardwareShopDataModels.Models;
|
2023-04-01 16:33:03 +04:00
|
|
|
|
using System.ComponentModel;
|
2023-04-01 12:26:05 +04:00
|
|
|
|
|
2023-04-01 13:12:37 +04:00
|
|
|
|
namespace HardwareShopContracts.ViewModels
|
2023-04-01 12:26:05 +04:00
|
|
|
|
{
|
2023-04-01 13:12:37 +04:00
|
|
|
|
public class ComponentViewModel : IComponentModel
|
2023-04-01 12:26:05 +04:00
|
|
|
|
{
|
2023-04-01 12:37:25 +04:00
|
|
|
|
public int Id { get; set; }
|
2023-04-01 16:33:03 +04:00
|
|
|
|
[DisplayName("Компонент")]
|
|
|
|
|
public string ComponentName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Цена")]
|
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
public int UserId { get; set; }
|
|
|
|
|
[DisplayName("Логин кладовщика")]
|
|
|
|
|
public string UserLogin { get; set; } = string.Empty;
|
2023-04-01 12:26:05 +04:00
|
|
|
|
}
|
|
|
|
|
}
|