Fixed issue with attachment tokens. Changed how attachments are handled to be more modular. Added support for PNG files.

This commit is contained in:
2024-02-09 19:02:09 -05:00
parent 40f9db3ea4
commit f31302438d
10 changed files with 410 additions and 74 deletions
@@ -0,0 +1,24 @@
namespace PWAPPv2.Source
{
class PatientGUIAdapter
{
private Patient p;
public string txtFName { get { return p.FName; } }
public string txtLName { get { return p.LName; } }
public string txtMName { get { return p.MName; } }
public string txtDob { get { return p.DoB; } }
public string txtStreet { get { return p.Address; } }
public string txtCity { get { return p.City; } }
public string txtState { get { return p.State; } }
public string txtZip { get { return p.Zip; } }
public string txtHomePhone { get { return p.HomePhone; } }
public string txtWorkPhone { get { return p.WorkPhone; } }
public string txtWirelessPhone { get { return p.WirelessPhone; } }
public string txtEmail { get { return p.Email; } }
public PatientGUIAdapter(Patient patient)
{
p = patient;
}
}
}