Beispiel #1
0
 public Datos(Loguin loguin, Label ticket, Label ClienteName, frm_Terminal t)
 {
     this.loguin      = loguin;
     this.ticket      = ticket;
     this.ClienteName = ClienteName;
     this.t           = t;
 }
Beispiel #2
0
 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;
 }
Beispiel #5
0
 public frm_Ventas(frm_Terminal t)
 {
     InitializeComponent();
     this.t = t;
 }
Beispiel #6
0
 public Control(Datos datos, frm_Terminal t)
 {
     InitializeComponent();
     this.datos = datos;
     this.t     = t;
 }