コード例 #1
0
 public ImmutableList <Tuple <Organization, INullableValue <int> > > GetValueForOutputContext(
     INullableValueFactory nullableValueFactory)
 {
     return(this.Value
            .Select(
                i => Tuple.Create(
                    i.jIndexElement.Value,
                    nullableValueFactory.Create <int>(
                        i.Value)))
            .ToImmutableList());
 }
コード例 #2
0
 public ImmutableList <Tuple <INullableValue <int>, INullableValue <decimal> > > GetValueForOutputContext(
     INullableValueFactory nullableValueFactory)
 {
     return(this.Value
            .Select(
                i => Tuple.Create(
                    (INullableValue <int>)i.ΛIndexElement.Value,
                    nullableValueFactory.Create <decimal>(
                        i.Value)))
            .ToImmutableList());
 }
コード例 #3
0
ファイル: μ.cs プロジェクト: JustinBritt/Ma2013.A.E.O
 public ImmutableList <Tuple <Organization, FhirDateTime, INullableValue <decimal> > > GetValueForOutputContext(
     INullableValueFactory nullableValueFactory)
 {
     return(this.Value
            .Select(
                i => Tuple.Create(
                    i.wIndexElement.Value,
                    i.dIndexElement.Value,
                    nullableValueFactory.Create <decimal>(
                        i.Value)))
            .ToImmutableList());
 }
コード例 #4
0
ファイル: v.cs プロジェクト: JustinBritt/HM.HM3A.A.E.O
 public ImmutableList <Tuple <Device, Location, INullableValue <bool> > > GetValueForOutputContext(
     INullableValueFactory nullableValueFactory)
 {
     return(this.Value
            .Select(
                i => Tuple.Create(
                    i.mIndexElement.Value,
                    i.rIndexElement.Value,
                    nullableValueFactory.Create <bool>(
                        i.Value)))
            .ToImmutableList());
 }
コード例 #5
0
ファイル: TPz.cs プロジェクト: JustinBritt/Ma2013.A.E.O
 public ImmutableList <Tuple <Organization, FhirDateTime, Location, INullableValue <int>, INullableValue <bool> > > GetValueForOutputContext(
     INullableValueFactory nullableValueFactory)
 {
     return(this.Value
            .Select(
                i => Tuple.Create(
                    i.sIndexElement.Value,
                    i.aIndexElement.Value,
                    i.rIndexElement.Value,
                    (INullableValue <int>)i.kIndexElement.Value,
                    nullableValueFactory.Create <bool>(
                        i.Value)))
            .ToImmutableList());
 }
コード例 #6
0
        public INullableValueFactory CreateNullableValueFactory()
        {
            INullableValueFactory factory = null;

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

            return(factory);
        }
コード例 #7
0
        public INullableValueFactory CreateNullableValueFactory()
        {
            INullableValueFactory factory = null;

            try
            {
                factory = new NullableValueFactory();
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(factory);
        }
コード例 #8
0
ファイル: Gap.cs プロジェクト: JustinBritt/HM.HM3B.A.E.O
 public INullableValue <decimal> GetValueForOutputContext(
     INullableValueFactory nullableValueFactory)
 {
     return(nullableValueFactory.Create <decimal>(
                this.Value));
 }