public void AddCoche(CocheEN coche) { CestaCAD aux = new CestaCAD(); coches.Add(coche); precio += coche.Precio; }
public bool Borrar() { CestaCAD aux = new CestaCAD(); bool delete = aux.Borrar(this); return(delete); }
public bool Insertar() { CestaCAD aux = new CestaCAD(); bool insert = aux.Insertar(this); return(insert); }
public void SacarCesta(string id) { CestaCAD cesta = new CestaCAD(); CestaEN cestaAux = new CestaEN(); cestaAux = cesta.SacarCesta(id); this.idCliente = cestaAux.idCliente; this.coches = cestaAux.coches; this.precio = cestaAux.precio; }
//inserta un elemento en la cesta y la actualiza public bool insertarActualizarCesta() { CestaCAD cesta = new CestaCAD(this); return(cesta.insertarActualizarCesta()); }
//borra un elemento de la cesta public bool borrarCesta() { CestaCAD cesta = new CestaCAD(this); return(cesta.borrarCesta()); }
public bool Actualizar() { CestaCAD aux = new CestaCAD(); return(aux.Actualizar(this)); }