public static string AlphabeticalNumericalMoney(this long value, string postfix = null)
 {
     return(string.Format("{0}  معادل {1}", value.NumericalMoney(postfix), value.AlphabeticalMoney(postfix)));
 }