Пример #1
0
        public ITPz Create(
            ImmutableList <ITPzResultElement> value)
        {
            ITPz result = null;

            try
            {
                result = new TPz(
                    value);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(result);
        }
Пример #2
0
        public ITPz Create(
            VariableCollection <IsIndexElement, IaIndexElement, IrIndexElement, IkIndexElement> value)
        {
            ITPz variable = null;

            try
            {
                variable = new TPz(
                    value);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(variable);
        }