PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/ViewModels/ConsultationViewModel.cs

20 lines
768 B
C#

using LawCompanyDataModels.Models;
using System.ComponentModel;
namespace LawCompanyContracts.ViewModels
{
public class ConsultationViewModel : IConsultationModel
{
[DisplayName("Номер консультации")]
public int Id { get; set; }
[DisplayName("Цена консультации")]
public double Cost { get; set; }
[DisplayName("Дело")]
public string CaseName { get; set; } = string.Empty;
public int CaseId { get; set; }
[DisplayName("Имя поручителя")]
public string GuarantorName { get; set; } = string.Empty;
public int GuarantorId { get; set; }
public Dictionary<int, ILawyerModel> ConsultationLawyers { get; set; } = new();
}
}