示例#1
0
 public bool EditCurrency(CurrencyRequest request)
 {
     try
     {
         return(_currencyLogic.EditCurrency(request.Id, request.Code, request.IsDefault, request.PriceToDefault));
     }
     catch (Exception e)
     {
         throw new FaultException("Sikertelen szerkesztés");
     }
 }