public static string EvalToDecimalFormat(this object evalResult)
        {
            decimal price = Convert.ToDecimal(evalResult);

            return(price.AsChf());
        }