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

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

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

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

            return(variable);
        }