예제 #1
0
        public void SupprimerStatut(int id)
        {
            StatutCommand sc = new StatutCommand(contexte);

            sc.Supprimer(id);
        }
        public void DeleteStatut(int id)
        {
            StatutCommand stat = new StatutCommand(_context);

            stat.Supprimer(id);
        }