Exemplo n.º 1
0
 public void m_mthDisplayPatient(string p_strStartDate, string p_strEndDate, bool p_blnIsRecord, bool p_blnIsOutPatient)
 {
     clsPatient[] objPatientArr = null;
     if (m_cboArea.SelectedItem != null)
     {
         objPatientArr = new clsPatientManager().m_objGetBetwDateInPatientByAreaID(((clsInPatientArea)m_cboArea.SelectedItem).m_StrAreaID, p_strStartDate, p_strEndDate, p_blnIsOutPatient, 1);
     }
     else if (m_cboDept.SelectedItem != null)
     {
         objPatientArr = new clsPatientManager().m_objGetBetwDateInPatientByAreaID(((clsDepartment)m_cboDept.SelectedItem).m_StrDeptID, p_strStartDate, p_strEndDate, p_blnIsOutPatient, 0);
     }
     m_mthSetPatientToLsv(objPatientArr, p_blnIsRecord);
 }
Exemplo n.º 2
0
 public void m_mthDispalyPatientByPatientName(string p_strPatientName, bool p_blnIsRecord)
 {
     clsPatient[] objPatientArr = new clsPatientManager().m_objGetInPatientByPatientName(p_strPatientName);
     m_mthSetPatientToLsv(objPatientArr, p_blnIsRecord);
 }
Exemplo n.º 3
0
 public void m_mthDisplayPatient(string p_strDate, bool p_blnIsRecord)
 {
     clsPatient[] objPatientArr = new clsPatientManager().m_objGetEndDateInPatientByAreaID(((clsInPatientArea)m_cboArea.SelectedItem).m_StrAreaID, p_strDate);
     m_mthSetPatientToLsv(objPatientArr, p_blnIsRecord);
 }