private void _vista_UsuarioDeseaObtenerSecuenciasPorVendedor(object sender, Argumentos.SecuenciaPorVendedorArgumento e)
 {
     try
     {
         _vista.SecuenciasPorVendedor = RutaServicio.ObtenerSecuenciasPorVendedor(e.SecuenciaPorVendedor);
     }
     catch (Exception ex)
     {
         _vista.EstablecerError(ex.Message, sender);
     }
 }
        private void _vista_UsuarioDeseaObtenerClientesDelDia(object sender, Argumentos.SecuenciaPorVendedorArgumento e)
        {
            try
            {
                _vista.Clientes = ClienteServicio.ObtenerClientePorDia(e.SecuenciaPorVendedor);

                _vista.TerminoProceso("cpTerminoDeCargarClientesDelDia", null, sender);
            }
            catch (Exception ex)
            {
                _vista.EstablecerError(ex.Message, sender);
            }
        }
        private void _vista_UsuarioDeseaActualizarSecuenciaDeVisitaDeCliente(object sender, Argumentos.SecuenciaPorVendedorArgumento e)
        {
            try
            {
                var resultado = ClienteServicio.ActualizarSecuenciaDeVisitaDeCliente(e);
                if (resultado.Resultado == Tipos.ResultadoOperacionTipo.Exito)
                {
                    _vista_UsuarioDeseaObtenerClientesDelDia(sender, e);

                    _vista.TerminoProceso("cpTerminoDeActualizarSecuenciaDeClientes", null, sender);
                }
                else
                {
                    _vista.EstablecerError(resultado.Mensaje, sender);
                }
            }
            catch (Exception ex)
            {
                _vista.EstablecerError(ex.Message, sender);
            }
        }