public void Transform(IEnumerable <UV> values)
 {
     UnitConversion.Transform(values, this.FromUnit, this.ToUnit);
 }
 public void Transform(UV val)
 {
     UnitConversion.Transform(val, this.FromUnit, this.ToUnit);
 }
 public void Transform(IList <double> values)
 {
     UnitConversion.Transform(values, this.FromUnit, this.ToUnit);
 }