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 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 EndExamDate { get; set; } public string Referral { get; set; } public string ReasonEnd { get; set; } public Nullable HIVConfirmDate { get; set; } public Nullable DateofRegistration { get; set; } public Nullable LastExamDate { get; set; } public Nullable 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 CTXsDate { get; set; } public Nullable CTXeDate { get; set; } public Nullable INHsDate { get; set; } public Nullable INHeDate { get; set; } public Nullable ARVsDate { get; set; } public Nullable ARVeDate { get; set; } public string Regimenid { get; set; } } }