Пример #1
0
 public int NoofDecimalPlacesFind()
 {
     int inNoOfDecimalPlaces = 0;
     try
     {
         ExchangeRateSP spExchangeRate = new ExchangeRateSP();
         if (cmbCurrency.SelectedValue != null)
         {
             inNoOfDecimalPlaces = spExchangeRate.NoOfDecimalNumberViewByCurrencyId(Convert.ToDecimal(cmbCurrency.SelectedValue.ToString()));
         }
     }
     catch (Exception)
     {
         throw;
     }
     return inNoOfDecimalPlaces;
 }