public static MvcHtmlString HtmlBriefToman(this long value, string postfix = null)
 {
     return(MvcHtmlString.Create(
                string.Format(
                    "<span title=\"معادل" + " {1}" + "\">{0}</span>",
                    value.NumericalMoney(postfix),
                    value.AlphabeticalToman(postfix))));
 }
 public static string AlphabeticalNumericalToman(this long value, string postfix = null)
 {
     return(string.Format("{0}  معادل {1}", value.NumericalMoney(postfix), value.AlphabeticalToman(postfix)));
 }