Example #1
0
        public RespuestaConsultar Consultar()
        {
            RespuestaConsultar respuesta = new RespuestaConsultar();

            try
            {
                conexion.Open();
                respuesta.Vendedores = vendedorRepository.Consultar();
                conexion.Close();
                if (respuesta.Vendedores.Count > 0)
                {
                    respuesta.Mensaje = "Se consultaron los datos";
                }
                else
                {
                    respuesta.Mensaje = "Los datos no existen";
                }
                respuesta.Error = false;
                return(respuesta);
            }
            catch (Exception e)
            {
                respuesta.Error   = true;
                respuesta.Mensaje = $"Error de la aplicaciĆ³n: " + e.Message;
                return(respuesta);
            }
            finally
            {
                conexion.Close();
            }
        }
Example #2
0
        public RespuestaConsultar Consultar()
        {
            RespuestaConsultar respuesta = new RespuestaConsultar();

            try
            {
                respuesta.liquidaciones = liquidacionRepository.Consultar();
                respuesta.Mensaje       = "Se ha consultado correctamente";
                return(respuesta);
            }
            catch (Exception e)
            {
                respuesta.Mensaje = "Error en el archivo" + e.Message;
                return(respuesta);
            }
        }
        public RespuestaConsultar Consultar()
        {
            RespuestaConsultar respuesta = new RespuestaConsultar();

            try
            {
                respuesta.liquidaciones = liquidacionCuotaModeradoraRepository.Consultar();
                if (respuesta.liquidaciones != null)
                {
                    respuesta.Mensaje = "Se consulta la informacion de liquidaciones";
                }
                else
                {
                    respuesta.Mensaje = "No existen datos para consultar";
                }
            }
            catch (Exception e)
            {
                respuesta.Mensaje = $"error de datos" + e.Message;
            }
            return(respuesta);
        }