public ModificarProductoPage() { InitializeComponent(); if (producto == null) { producto = new Producto(); } if (localNeg == null) { localNeg = new LocalNeg(); } if (productoNeg == null) { productoNeg = new ProductoNeg(); } if (estadoNeg == null) { estadoNeg = new EstadoNeg(); } if (rubroNeg == null) { rubroNeg = new RubroNeg(); } controlesProducto.cbxRubro.SelectionChanged += CbxRubro_SelectionChanged; }
public List <Producto> MotrarAllProducto() { ProductoNeg pneg = new ProductoNeg(); var lista = pneg.MostrarAllProducto(); return(lista.ToList()); }
public VentaController() { objVentaNeg = new VentaNeg(); objClienteNeg = new ClienteNeg(); objProductoNeg = new ProductoNeg(); objModoPagoNeg = new ModoPagoNeg(); objFacturaNeg = new FacturaNeg(); objDetalleVentaNeg = new DetalleVentaNeg(); }
public bool insertarProducto(Producto producto) { try { return(ProductoNeg.insertarProducto(producto)); } catch (Exception) { return(false); } }
public IHttpActionResult obtenerTablas() { try { return(Ok(ProductoNeg.obtenerTablas())); } catch (Exception ex) { return(NotFound()); throw; } }
public MenuProductoPage() { InitializeComponent(); if (productoNeg == null) { productoNeg = new ProductoNeg(); } if (listaProductos == null) { listaProductos = productoNeg.listarProducto(); } cargarProductos(); }
public VerOfertaDetallePage() { InitializeComponent(); if (ofertaNeg == null) { ofertaNeg = new OfertaNeg(); } if (localNeg == null) { localNeg = new LocalNeg(); } if (productoNeg == null) { productoNeg = new ProductoNeg(); } if (estadoNeg == null) { estadoNeg = new EstadoNeg(); } if (rubroNeg == null) { rubroNeg = new RubroNeg(); } if (detalleOfertaNeg == null) { detalleOfertaNeg = new DetalleOfertaNeg(); } if (imagenesOfertaNeg == null) { imagenesOfertaNeg = new ImagenesOfertaNeg(); } if (listaImagenes == null) { listaImagenes = new List <object>(); } if (listaImagenesOferta == null) { listaImagenesOferta = new List <ImagenOferta>(); } if (valoracionOfertaNeg == null) { valoracionOfertaNeg = new ValoracionOfertaNeg(); } }
public RegistrarOfertaPage() { InitializeComponent(); if (localNeg == null) { localNeg = new LocalNeg(); } if (productoNeg == null) { productoNeg = new ProductoNeg(); } if (estadoNeg == null) { estadoNeg = new EstadoNeg(); } if (rubroNeg == null) { rubroNeg = new RubroNeg(); } if (ofertaNeg == null) { ofertaNeg = new OfertaNeg(); } if (detalleOfertaNeg == null) { detalleOfertaNeg = new DetalleOfertaNeg(); } if (imagenesOfertaNeg == null) { imagenesOfertaNeg = new ImagenesOfertaNeg(); } if (listaImagenes == null) { listaImagenes = new List <object>(); } cargarCbxs(); setDatePickers(); }
public PrincipalPage() { InitializeComponent(); setSeriesCollection(); dtFechaOfertaVisitada.SelectedDate = DateTime.Now; if (ofertaNeg == null) { ofertaNeg = new OfertaNeg(); } if (rubroNeg == null) { rubroNeg = new RubroNeg(); } if (listaOfertasMasVisitadas == null) { listaOfertasMasVisitadas = new List <Oferta>(); } if (trabajadorNeg == null) { trabajadorNeg = new TrabajadorNeg(); } if (productoNeg == null) { productoNeg = new ProductoNeg(); } txtCantOfertas.Text = ofertaNeg.cantidadTotalOfertas().ToString(); txtCantTrabajadores.Text = trabajadorNeg.cantidadTotalTrabajadores().ToString(); txtCantProductos.Text = productoNeg.cantidadTotalProductos().ToString(); listarOfertasMasVisitadas(); listarRubrosMasVisitados(); setCartesianChart(); }
public RegistrarProductoPage() { InitializeComponent(); if (localNeg == null) { localNeg = new LocalNeg(); } if (productoNeg == null) { productoNeg = new ProductoNeg(); } if (estadoNeg == null) { estadoNeg = new EstadoNeg(); } if (rubroNeg == null) { rubroNeg = new RubroNeg(); } camposProductos.cbxRubro.SelectionChanged += CbxRubro_SelectionChanged; cargarCbxLocal(); cargarCboEstado(); cargarCbxRubro(); }
public CategoriaController() { objCategoriaNeg = new CategoriaNeg(); objProductoNeg = new ProductoNeg(); }
public ProductoController() { objProductoNeg = new ProductoNeg(); }
public PRODUCTO MostrarProductoByID(string PRODUCTO_COD) { ProductoNeg pneg = new ProductoNeg(); return(pneg.MostrarProductoByID(PRODUCTO_COD)); }
public int ModificarProducto(string PRODUCTO_COD, int ID_TIPO, string COD_BODEGA, string NOMBRE_PRODUCTO, string COD_BARRA) { ProductoNeg pneg = new ProductoNeg(); return(pneg.ModificarProductoByID(PRODUCTO_COD, ID_TIPO, COD_BODEGA, NOMBRE_PRODUCTO, COD_BARRA)); }