Ejemplo n.º 1
0
 private void SetupFamilyMemberSection()
 {
     GetPastCareRX gpcrx = new GetPastCareRX(ThisSession.EmployeeID, ThisSession.CCHID);
     if (!gpcrx.HasErrors)
     {
         if (gpcrx.FamilyMedTable.Rows.Count > 0)
         {
             ucFindRx.FamilyMedDataTable = gpcrx.FamilyMedTable;
             ucFindRx.SetupFamilyMembers();
         }
         if (gpcrx.SaveTable.Rows.Count > 0)
         {
             if (gpcrx.SaveTotal != "$0")
             {
                 abRX.SaveTotal = gpcrx.SaveTotal;
             }
             else
             {
                 abRX.Visible = false;
             }
         }
     }
     else
     {
         abRX.Visible = false;
     }
 }