예제 #1
0
 public ListadoTurno(ListadoSeleccionListener _listener)
 {
     InitializeComponent();
     listener             = _listener;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     cargarListadoTurnos();
     botonAlta.Visible      = false;
     botonBaja.Visible      = false;
     botonModificacion.Text = "Seleccionar";
     seleccionDeTurno       = true;
 }
예제 #2
0
 public ListadoChofer(ListadoSeleccionListener _listener, Boolean soloActivos)
 {
     InitializeComponent();
     listener             = _listener;
     this.soloActivos     = soloActivos;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     cargarListadoChofer();
     botonAlta.Visible      = false;
     botonBaja.Visible      = false;
     botonModificacion.Text = "Seleccionar";
     seleccionDeChofer      = true;
 }
예제 #3
0
 public ListadoChofer(ListadoSeleccionListener _listener) : this(_listener, false)
 {
 }
예제 #4
0
 public ListadoCliente(ListadoSeleccionListener _listener) : this(_listener, false)
 {
 }