示例#1
0
        public static List <VOCliente> ConsultarClientes()
        {
            List <VOCliente> clientes = null;

            try
            {
                clientes = DALCliente.ConsultarClientes();
            }
            catch (Exception ex)
            {
                throw new ArgumentException("Error al consultar el registro de persona");
            }
            return(clientes);
        }