2024-05-08 14:52:50 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace MedicalDatabaseContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class PatientViewModel : AbstractPersonViewModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Пол")]
|
|
|
|
|
public char Gender { get; set; }
|
|
|
|
|
[DisplayName("Дата рождения")]
|
|
|
|
|
public DateTime Birthday { get; set; }
|
|
|
|
|
[DisplayName("Вес, кг")]
|
|
|
|
|
public int Weight { get; set; }
|
2024-05-14 23:24:11 +04:00
|
|
|
|
[DisplayName("Рост, см")]
|
2024-05-08 14:52:50 +04:00
|
|
|
|
public int Height { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|