public string getFre(int n)
        {
            meds temp = new meds();
            temp = (meds)medL[n];

            return temp.freq;
        }
        public string getMed(int n)
        {
            meds temp = new meds();
            temp = (meds)medL[n];

            return temp.med;
        }
        public float getDos(int n)
        {
            meds temp = new meds();
            temp = (meds)medL[n];

            return temp.dose;
        }
        public void setML(string med, float dose, string freq)
        {
            meds m = new meds();
            m.med = med;
            m.dose = dose;
            m.freq = freq;

            medL.Add(m);
        }