示例#1
0
        public List <Bestelling> GetBestelling()
        {
            try
            {
                List <Bestelling> bestellingen = bestelling_db.Db_Get_All_Bestellingen();
                return(bestellingen);
            }
            catch (Exception)
            {
                // something went wrong connecting to the database, so we will add a fake student to the list to make sure the rest of the application continues working!
                List <Bestelling> bestellingen = new List <Bestelling>();
                Bestelling        b            = new Bestelling();
                b.BestellingID = 111111;

                bestellingen.Add(b);

                return(bestellingen);
                //throw new Exception("Someren couldn't connect to the database");
            }
        }