public static DataTable ExecuteDataTable(string connectionString, string commandText)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();
            SqlCommandCustom command       = new SqlCommandCustom();

            command.CommandText = commandText;
            return(commandHelper.ExecuteDataTable(connectionString, command));
        }
        public static DataTable ExecuteDataTable(ITransactionCustom Transaction, ICommandCustom Command)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

            return(commandHelper.ExecuteDataTable(Transaction, Command));
        }
        public static DataTable ExecuteDataTable(string connectionString, ICommandCustom Command)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

            return(commandHelper.ExecuteDataTable(connectionString, Command));
        }