Пример #1
0
        public PartialViewResult DetailCmd(int id)
        {
            Commande commande = new Commande();

            commande.Affiche(id);
            Tuple <Commande, Product, Client> tuple = new Tuple <Commande, Product, Client>(commande, new Product(), new Client());

            return(PartialView("_Savecmd", tuple));
        }