예제 #1
0
 public CurrencyDto GetCurrencyById(long id)
 {
     try
     {
         return(_currencyLogic.GetCurrencyById(id).Map());
     }
     catch (Exception e)
     {
         throw new FaultException("Not found such currency!");
     }
 }