PIbd-21_MasenkinMS_SUBD_Rou.../RouteGuide/RouteGuideContracts/ViewModels/TransportViewModel.cs
2024-04-05 02:48:52 +04:00

53 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using RouteGuideDataModels.Enums;
using RouteGuideDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RouteGuideContracts.ViewModels
{
/// <summary>
/// Модель для передачи данных пользователю
/// для отображения для транспорта
/// </summary>
public class TransportViewModel : ITransportModel
{
/// <summary>
/// Идентификатор
/// </summary>
public int Id { get; set; }
/// <summary>
/// Номерной знак
/// </summary>
[DisplayName("Номерной знак")]
public string License { get; set; } = string.Empty;
/// <summary>
/// Тип транспортного средства
/// </summary>
[DisplayName("Тип транспорта")]
public TransportType Type { get; set; } = TransportType.Автобус;
/// <summary>
/// Вместимость (количество пассажиров)
/// </summary>
[DisplayName("Вместимость")]
public int Capacity { get; set; }
/// <summary>
/// Идентификатор водителя
/// </summary>
public int DriverId { get; set; }
/// <summary>
/// ФИО водителя
/// </summary>
[DisplayName("ФИО водителя")]
public string DriverName { get; set; } = string.Empty;
}
}