Ejemplo n.º 1
0
        internal bool Generate()
        {
            try
            {
                ds.DeleteData();
                foreach (Patient p in _patients)
                {
                    GenerateBloodData(p);
                    GenerateFoodReportData(p);
                }

                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }