コード例 #1
0
        public IScenarioNumberPatients Create(
            ImmutableList <IScenarioNumberPatientsResultElement> value)
        {
            IScenarioNumberPatients result = null;

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

            return(result);
        }
コード例 #2
0
        public IScenarioNumberPatients Create(
            ImmutableList <IScenarioNumberPatientsResultElement> value)
        {
            IScenarioNumberPatients result = null;

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

            return(result);
        }