21 lines
812 B
C#
21 lines
812 B
C#
using DocuMed.Domain.Entities.Patients;
|
|
|
|
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;
|
|
} |