/// <summary>
 ///     Creates a new instance of <see cref="PerformanceStates20ClockEntryV1" />
 /// </summary>
 /// <param name="domain">The public clock domain.</param>
 /// <param name="valueDelta">The base value delta.</param>
 /// <param name="frequencyRange">The clock frequency range value.</param>
 // ReSharper disable once TooManyDependencies
 public PerformanceStates20ClockEntryV1(
     PublicClockDomain domain,
     PerformanceStates20ParameterDelta valueDelta,
     PerformanceStates20ClockDependentFrequencyRange frequencyRange) :
     this(domain, PerformanceStates20ClockType.Range, valueDelta)
 {
     _ClockDependentInfo = new PerformanceStates20ClockDependentInfo(frequencyRange);
 }
 public PerformanceStates20ClockDependentInfo(
     PerformanceStates20ClockDependentFrequencyRange frequencyRange
     ) : this()
 {
     _Range = frequencyRange;
 }