public IrtCrossJoinElement Create(
            IrIndexElement rIndexElement,
            ItIndexElement tIndexElement)
        {
            IrtCrossJoinElement crossJoinElement = null;

            try
            {
                crossJoinElement = new rtCrossJoinElement(
                    rIndexElement,
                    tIndexElement);
            }
            catch (Exception exception)
            {
                this.Log.Error("Exception message: " + exception.Message + " and stacktrace " + exception.StackTrace);
            }

            return(crossJoinElement);
        }
        public IrtCrossJoinElement Create(
            IrIndexElement rIndexElement,
            ItIndexElement tIndexElement)
        {
            IrtCrossJoinElement crossJoinElement = null;

            try
            {
                crossJoinElement = new rtCrossJoinElement(
                    rIndexElement,
                    tIndexElement);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(crossJoinElement);
        }