Exemplo n.º 1
0
        public CommandeProduit UpdateCommandeProduit(CommandeProduit cp)
        {
            CommandeProduitCommand cpc = new CommandeProduitCommand(contexte);

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

            cpc.Delete(cp);
        }
Exemplo n.º 3
0
        public void AddCommandeProduit(CommandeProduit cp)
        {
            CommandeProduitCommand cpc = new CommandeProduitCommand(contexte);

            cpc.Add(cp);
        }