private void IniciarListados(int bandera, string tipo) { Listados form = new Listados(this, bandera, tipo, id, t); form.Show(); this.Enabled = false; }
public Seguridad(Listados padre, int tareaBandera, int idTabla) { this.tareaBandera = tareaBandera; this.idTabla = idTabla; this.padre = padre; InitializeComponent(); }
public GenerarPDF(Listados padre, String tipo, int idCotizacion, int bandera) { this.padreL = padre; this.tipo = tipo; this.idCotizacion = idCotizacion; this.bandera = bandera; InitializeComponent(); }
public AgregarUsuario(Listados padre, int tareaBandera, int idTabla) { Padre = padre; this.tareaBandera = tareaBandera; this.idTabla = idTabla; InitializeComponent(); tareaRealizar(); }
public AgregarCotizacion(Listados padre, int bandera, string tipo_usuario, string id, int tareaBandera, int idCliente) { InitializeComponent(); this.Padre = padre; this.bandera = bandera; this.tareaBandera = tareaBandera; this.tipo_usuario = tipo_usuario; this.id = id; isFirstTime = true; }
public Pagos(Listados padre, int bandera, string tipo_usuario, string id, int tareaBandera, int idCotizacion, DateTime t) { InitializeComponent(); this.Padre = padre; this.bandera = bandera; this.tareaBandera = tareaBandera; this.tipo_usuario = tipo_usuario; this.id = id; this.idCotizacion = idCotizacion; this.t = t; }
public AgregarCliente(Listados padre, int bandera, string tipo_usuario, Boolean detalle) { Padre = padre; this.detalle = detalle; this.bandera = bandera; this.tipo_usuario = tipo_usuario; InitializeComponent(); ComboBoxTipoCliente.Items.Add("PUBLICO"); ComboBoxTipoCliente.Items.Add("FRECUENTE"); ComboBoxTipoCliente.Items.Add("MAYORISTA"); }
public AgregarCliente(Listados padre, int bandera, string tipo_usuario, string id, int tareaBandera, int idCliente) { Padre = padre; this.bandera = bandera; this.id = id; this.tipo_usuario = tipo_usuario; this.tareaBandera = tareaBandera; this.idCliente = idCliente; InitializeComponent(); tareaRealizar(); }