Example #1
0
        public CommandeProduit UpdateCommandeProduit(CommandeProduit cp)
        {
            CommandeProduitCommand cpc = new CommandeProduitCommand(contexte);

            return(cpc.Update(cp));
        }
Example #2
0
        public void DeleteCommandeProduit(CommandeProduit cp)
        {
            CommandeProduitCommand cpc = new CommandeProduitCommand(contexte);

            cpc.Delete(cp);
        }
Example #3
0
        public void AddCommandeProduit(CommandeProduit cp)
        {
            CommandeProduitCommand cpc = new CommandeProduitCommand(contexte);

            cpc.Add(cp);
        }