/// <summary>
        /// Returns a list of strings containing the names of all the transaction types in the database.
        /// </summary>
        /// <returns>
        /// List of strings containing the names of all the transaction types in the database
        /// </returns>
        public static IEnumerable <string> GetTransactionTypeList()
        {
            IQuery query = QueryBuilder.GetQuery(Symbols.FINDALL, Symbols.TRANSACTION_TYPE_LIST);

            return(OracleDataUtil.GetListOfString(query));
        }
Esempio n. 2
0
        /// <summary>
        /// Returns a list of strings containing the names of all the processes in the database.
        /// </summary>
        /// <returns>List of strings containing the names of all the processes in the database</returns>
        public static IEnumerable <string> GetProcessNameList()
        {
            IQuery query = QueryBuilder.GetQuery(Symbols.FINDALL, Symbols.PROCESS_LIST);

            return(OracleDataUtil.GetListOfString(query));
        }
Esempio n. 3
0
        /// <summary>
        /// Returns a list of strings containing the names of all the clients in the database.
        /// </summary>
        /// <returns>List of strings containing the names of all the clients in the database</returns>
        public static IEnumerable <string> GetClientList()
        {
            IQuery query = QueryBuilder.GetQuery(Symbols.FINDALL, Symbols.CLIENT_LIST);

            return(OracleDataUtil.GetListOfString(query));
        }