25 lines
846 B
C#
Raw Normal View History

2024-05-08 14:52:50 +04:00
using System.ComponentModel;
namespace MedicalDatabaseContracts.ViewModels
{
public class VisitViewModel : AbstractViewModel
{
public int PatientId { get; set; }
public int DoctorId { get; set; }
public int? DiagnoseId { get; set; }
2024-05-08 14:52:50 +04:00
[DisplayName("Комментарий")]
public string Comment { get; set; } = string.Empty;
[DisplayName("Пациент")]
public string PatientFIO { get; set; } = string.Empty;
[DisplayName("Врач")]
public string DoctorFIO { get; set; } = string.Empty;
[DisplayName("Диагноз")]
public string DiagnoseName { get; set; } = string.Empty;
[DisplayName("Дата")]
public DateOnly Date { get; set; }
[DisplayName("Время")]
public TimeOnly Time { get; set; }
2024-05-08 14:52:50 +04:00
}
}