Example #1
0
 /// <summary>
 /// Gets information about the series value type identified by the given ID.
 /// </summary>
 /// <param name="seriesValueTypeID">The identifier for the series value type.</param>
 /// <returns>Information about the series value type.</returns>
 public static Identifier?GetInfo(Guid seriesValueTypeID) => SeriesValueTypeLookup.TryGetValue(seriesValueTypeID, out Identifier identifier)
     ? identifier
     : null;
Example #2
0
        /// <summary>
        /// Gets information about the series value type identified by the given ID.
        /// </summary>
        /// <param name="seriesValueTypeID">The identifier for the series value type.</param>
        /// <returns>Information about the series value type.</returns>
        public static Identifier GetInfo(Guid seriesValueTypeID)
        {
            Identifier identifier;

            return(SeriesValueTypeLookup.TryGetValue(seriesValueTypeID, out identifier) ? identifier : null);
        }