public void EditProduct(Product p) { // TODO : ajouter des contrôles sur le produit (exemple : vérification de champ, etc.) ProductCommand pc = new ProductCommand(context); pc.Edit(p); }
public void EditProduct(Product p) { ProductCommand pc = new ProductCommand(context); pc.Edit(p); }