Files
2025-08-02 05:20:17 +07:00

45 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PatientMan.Classes
{
class clsPatientInfo
{
public int No { get; set; }
public string PatientID { get; set; }
public string PatientName { get; set; }
public int BirthYear { get; set; }
public string Sex { get; set; }
public string Address { get; set; }
public Nullable<DateTime> DateofArv { get; set; }
public string IsArv { get; set; }
public string ProvinceId { get; set; }
public string DistrictId { get; set; }
public string CommuneId { get; set; }
public Nullable<DateTime> EndExamDate { get; set; }
public string Referral { get; set; }
public string ReasonEnd { get; set; }
public Nullable<DateTime> HIVConfirmDate { get; set; }
public Nullable<DateTime> DateofRegistration { get; set; }
public Nullable<DateTime> LastExamDate { get; set; }
public Nullable<DateTime> ReExamDate { get; set; }
public string TelephoneNo { get; set; }
public string SupporterInfo { get; set; }
public string sms { get; set;}
public string OutPatientTreatment { get; set; }
public string CD4 { get; set; }
public string CD4Delays { get; set; }
public string Delays { get; set; }
public Nullable<DateTime> CTXsDate { get; set; }
public Nullable<DateTime> CTXeDate { get; set; }
public Nullable<DateTime> INHsDate { get; set; }
public Nullable<DateTime> INHeDate { get; set; }
public Nullable<DateTime> ARVsDate { get; set; }
public Nullable<DateTime> ARVeDate { get; set; }
public string Regimenid { get; set; }
}
}