public Datos(Loguin loguin, Label ticket, Label ClienteName, frm_Terminal t) { this.loguin = loguin; this.ticket = ticket; this.ClienteName = ClienteName; this.t = t; }
public frm_FiltroProductos(Datos datos, ListView lv_Detalle, Label total, frm_Terminal t) { InitializeComponent(); this.d = datos; this.t = t; this.total = total; this.lv_Detalle = lv_Detalle; CargarDatos(); }
public ClienteDeuda(frm_Terminal t, Datos datos) { InitializeComponent(); this.datos = datos; this.t = t; lb_Cliente.Text = datos.getCliente().NombreRazonSocial; this.cb_Pagos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; Mensaje msj = new Mensaje(); msj.op = 14; msj.IdCliente = datos.getCliente().Cod_Cliente; send.EnviarMensaje(c.SerializarObj(msj)); }
public frm_Cliente(Datos datos, frm_Terminal t) { InitializeComponent(); this.datos = datos; this.t = t; }
public frm_Ventas(frm_Terminal t) { InitializeComponent(); this.t = t; }
public Control(Datos datos, frm_Terminal t) { InitializeComponent(); this.datos = datos; this.t = t; }