Api-PWA/DocuMed.Domain/Dtos/SmallDtos/PatientSDto.cs

19 lines
771 B
C#

namespace DocuMed.Domain.Dtos.SmallDtos;
public class PatientSDto : BaseDto<PatientSDto,Patient>
{
public string UnitNumber { get; set; } = string.Empty;
public string Room { get; set; } = string.Empty;
public string Bed { get; set; } = string.Empty;
public DateTime AdmissionAt { get; set; }
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string NationalId { get; set; } = string.Empty;
public DateTime BirthDate { get; set; }
public Gender Gender { get; set; }
public Guid HospitalId { get; set; }
public Guid SectionId { get; set; }
public string SectionName { get; set; } = string.Empty;
public string FullName => FirstName + " " + LastName;
}