Exemplo n.º 1
0
 public Restock(Nexo nexo, int idSucursal)
 {
     this.idSucursal = idSucursal;
     this.nexo       = nexo;
     this.alta       = true;
     InitializeComponent();
 }
Exemplo n.º 2
0
 public Producto(Nexo nexo, string[] valores)
 {
     this.alta    = false;
     this.valores = valores;
     this.nexo    = nexo;
     InitializeComponent();
 }
Exemplo n.º 3
0
 public Producto(Nexo nexo)
 {
     this.alta    = true;
     this.valores = null;
     this.nexo    = nexo;
     InitializeComponent();
 }
Exemplo n.º 4
0
 public Restock(Nexo nexo, int idInventario, int idSucursal)
 {
     this.idSucursal   = idSucursal;
     this.nexo         = nexo;
     this.idInventario = idInventario;
     this.alta         = false;
     InitializeComponent();
 }
Exemplo n.º 5
0
 public Venta(int idCliente, int idSucursal, Nexo nexo)
 {
     this.alta       = true;
     this.nexo       = nexo;
     this.idCliente  = idCliente;
     this.idSucursal = idSucursal;
     this.subTotal   = -1;
     InitializeComponent();
 }
Exemplo n.º 6
0
 private void Inventario_Load(object sender, EventArgs e)
 {
     //Creamos el nexo
     this.idCliente    = -1;
     this.idCategoria  = -1;
     this.idInventario = -1;
     this.idSucursal   = -1;
     this.idProducto   = -1;
     this.idVenta      = -1;
     this.nexo         = new Nexo();
     this.actualizaDataGrids();
 }
 public SeleccionaCliente(Nexo nexo)
 {
     this.nexo = nexo;
     InitializeComponent();
 }
Exemplo n.º 8
0
 public ConsultaDetalleInventario(int id, Nexo nexo)
 {
     this.id   = id;
     this.nexo = nexo;
     InitializeComponent();
 }
Exemplo n.º 9
0
 public ConsultaDetalleVenta(Nexo nexo, int idVenta)
 {
     this.nexo    = nexo;
     this.idVenta = idVenta;
     InitializeComponent();
 }
 public SeleccionaSucursal(Nexo nexo)
 {
     this.nexo = nexo;
     InitializeComponent();
 }