// // GET: /PointDeVente/ public ActionResult Index(int id, string utilisateur) { //Initiation service pointVenteService = new PointDeVenteService(); livraisonCarteVueService = new LivraisonCartePVVueService(); PointDeVenteVue pointDeVente = new PointDeVenteVue(utilisateur); List <PointDeVenteVue> listPointDeVente = pointVenteService.search(pointDeVente); LivraisonCartePVVue livraison = new LivraisonCartePVVue(listPointDeVente[0].Libelle); List <LivraisonCartePVVue> listLivraison = new LivraisonCartePVVueDAO().search(livraison); ViewBag.ListeLivraison = listLivraison; return(View()); }
public ActionResult VenteCarte(int livraison, int quantite, string pointDeVente, string date_vente) { //insertion vente carte venteCarteService = new VenteCarteService(); pointVenteService = new PointDeVenteService(); LivraisonCarte liv = new LivraisonCarte(livraison); PointDeVenteVue pv = new PointDeVenteVue(0, pointDeVente); List <PointDeVenteVue> listPV = new PointDeVenteDAO().search(pv); PointDeVente pointVente = new PointDeVente(listPV[0].Id); DateTime date = DateTime.Parse(date_vente); VenteCarte vente = new VenteCarte(liv, quantite, pointVente, date); venteCarteService.insert(vente); return(new EmptyResult()); }
public ActionResult Index(int id) { empStockService = new EmployeStockService(); empService = new EmployeService(); pointDeVenteService = new PointDeVenteService(); List <EmployeVue> listEmploye = empService.getAll(); List <PointDeVenteVue> listPointDeVente = pointDeVenteService.getAll(); ViewBag.listEmploye = listEmploye; ViewBag.listPointVente = listPointDeVente; EmployeVue emp = empService.findById(id); List <EmployeStockVue> listAll = empStockService.search(new EmployeStockVue(emp.Nom, emp.Prenom)); ViewBag.listStock = listAll; return(View()); }