Upload to server

uploading
This commit is contained in:
2025-08-02 05:20:17 +07:00
commit a5eccbd452
984 changed files with 3031800 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PatientMan.Classes
{
class clsPatientInfo
{
public string PatientID { get; set; }
public string PatientName { get; set; }
public int BirthYear { get; set; }
public string Sex { get; set; }
public string Adress { get; set; }
public string IsArv { get; set; }
public string Province { get; set; }
public string DistrictName { get; set; }
public string CommuneName { get; set; }
public DateTime EndTreatmentDate { get; set; }
public string Referral { get; set; }
public string EndReason { get; set; }
public string HIVConfirmDate { get; set; }
public string RegisterDate { get; set; }
public string LastExamDate { get; set; }
public string ReExamDate { get; set; }
public string TelefoneNo { get; set; }
public string SupportInfo { get; set; }
}
}