public static string GetMoneyInfoWithCurrency(CurrencyType currency, decimal? money, string formatter = "{0}{1}")
 {
     return string.Format(formatter, currency.GetCurrentString(), money.GetValueOrDefault().ToMoneyF2(LocalizedObjectHelper.CultureInfoCurrentUsed));
 }