public ItΛCrossJoinElement Create(
            ItIndexElement tIndexElement,
            IΛIndexElement ΛIndexElement)
        {
            ItΛCrossJoinElement crossJoinElement = null;

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

            return(crossJoinElement);
        }
Exemplo n.º 2
0
        public ItΛCrossJoinElement Create(
            ItIndexElement tIndexElement,
            IΛIndexElement ΛIndexElement)
        {
            ItΛCrossJoinElement crossJoinElement = null;

            try
            {
                crossJoinElement = new tΛCrossJoinElement(
                    tIndexElement,
                    ΛIndexElement);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(crossJoinElement);
        }