示例#1
0
        public ISurgeonScenarioNumberPatients Create(
            ImmutableList <ISurgeonScenarioNumberPatientsResultElement> value)
        {
            ISurgeonScenarioNumberPatients result = null;

            try
            {
                result = new SurgeonScenarioNumberPatients(
                    value);
            }
            catch (Exception exception)
            {
                this.Log.Error("Exception message: " + exception.Message + " and stacktrace " + exception.StackTrace);
            }

            return(result);
        }
示例#2
0
        public ISurgeonScenarioNumberPatients Create(
            ImmutableList <ISurgeonScenarioNumberPatientsResultElement> value)
        {
            ISurgeonScenarioNumberPatients result = null;

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

            return(result);
        }