Example #1
0
        public void update(pays pays)
        {
            string query = " pays set nom = 'Allemagne' where id = " + pays.Id + ";";

            _dbal.Update(query);
        }
Example #2
0
        public void update(fromage lefromage)
        {
            string query = " fromage set nom = 'tome' where id = " + lefromage.Id + ";";

            _dbal.Update(query);
        }