예제 #1
0
        public static bool ExecuteQuery(string query)
        {
            if (Module != null)
            {
                return(Module.ExecuteQuery(query));
            }

            return(false);
        }
예제 #2
0
        public static List <T> ExecuteQuery <T>(string query)
        {
            if (Module != null)
            {
                return(Module.ExecuteQuery <T>(query));
            }

            return(null);
        }