using System; namespace Sockeye.Util { internal static class MoneyUtil { /// /// Rounding for monetary values /// /// /// /// public static decimal Round(decimal d) => Decimal.Round(d, 2, MidpointRounding.AwayFromZero); }//eoc }//eons