ISEbd-21_Melnikov_I.O._CarS.../CarService/CarServiceContracts/ViewModels/ReportRepairRequestViewModel.cs

34 lines
931 B
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.

namespace CarServiceContracts.ViewModels
{
/// <summary>
/// Модель для получения одной заявки для отчета
/// </summary>
public class ReportRepairRequestViewModel
{
/// <summary>
/// Номер заявки
/// </summary>
public int RepairRequestId { get; set; }
/// <summary>
/// Дата создания заявки
/// </summary>
public DateTime RepairRequestDateCreated { get; set; } = DateTime.Now;
/// <summary>
/// Имя клиента
/// </summary>
public string CustomerName { get; set; } = string.Empty;
/// <summary>
/// Название ТС
/// </summary>
public string VehicleName { get; set; } = string.Empty;
/// <summary>
/// Гос. номер
/// </summary>
public string Plate { get; set; } = string.Empty;
/// <summary>
/// Количество работ
/// </summary>
public int WorksCount { get; set; }
}
}