예제 #1
0
        /// <summary>
        /// Retreves the list of medicines from database
        /// </summary>
        /// <returns>List of Medicines</returns>
        public List <Medicines> MedicinesInformation()
        {
            AllMedicinesAndTestsData medincineData = new AllMedicinesAndTestsData();

            return(medincineData.MedicinesData());
        }
예제 #2
0
        /// <summary>
        /// Retreaves the list of all the Tests from Database.
        /// </summary>
        /// <returns>List of Tests</returns>
        public List <Tests> TestsInformation()
        {
            AllMedicinesAndTestsData testData = new AllMedicinesAndTestsData();

            return(testData.TestsData());
        }