private void _vista_UsuarioDeseaObtenerPilotosNoAsociadosAVehiculos(object sender, Argumentos.PilotoArgumento e) { try { _vista.Pilotos = PilotoServicio.ObtenerPilotosNoAsociadosAVehiculos(e); } catch (Exception exception) { InteraccionConUsuarioServicio.MensajeErrorDialogo(exception.Message); } }
private void _vista_VistaCargandosePorPrimeraVez(object sender, EventArgs e) { try { _vista.Vehiculo = new Vehiculo(); _vista.Vehiculos = VehiculoServicio.ObtenerVehiculos(new VehiculoArgumento { Vehiculo = new Vehiculo() }); _vista.Pilotos = PilotoServicio.ObtenerPilotosNoAsociadosAVehiculos(new PilotoArgumento { Piloto = new Piloto() }); _vista.EmpresasDeTransporte = EmpresaDeTransporteServicio.ObtenerEmpresasDeTransporte(new EmpresaDeTransporteArgumento { EmpresaDeTransporte = new EmpresaDeTransporte() }); _vista.PolizasDeSeguro = PolizaServicio.ObtenerTodasLasPolizasDeSeguro(); ObtenerParametros(); } catch (Exception exception) { InteraccionConUsuarioServicio.MensajeErrorDialogo(exception.Message); } }