2023-02-21 06:27:20 +00:00
|
|
|
using InnovEnergy.Lib.Utils;
|
|
|
|
|
2023-02-25 14:53:58 +00:00
|
|
|
namespace InnovEnergy.App.SaliMax;
|
2023-02-21 06:27:20 +00:00
|
|
|
|
|
|
|
public static class Utils
|
|
|
|
{
|
|
|
|
public static Decimal Round3(this Decimal d)
|
|
|
|
{
|
2023-03-02 16:15:10 +00:00
|
|
|
return DecimalUtils.RoundToSignificantDigits(d, 3);
|
2023-02-21 06:27:20 +00:00
|
|
|
}
|
|
|
|
}
|