12345678910111213141516171819202122232425262728293031323334353637 |
- using OASystem.Domain.Dtos.SmallFun;
- using OASystem.Domain.ViewModels.JuHeExchangeRate;
- namespace OASystem.API.OAMethodLib.JuHeAPI
- {
-
-
-
- public interface IJuHeApiService
- {
-
-
-
-
- Task<JuHeAPIResult> GetExchangeRateAsync();
-
-
-
-
-
- Task<Result> GetSingleRateAsync(string currencyCode);
-
-
-
-
- Task<Result> PostItemRateAsync(string[] currencyCodes);
-
-
-
-
- Task<Result> GetExchangeRateAsync(ExchangeRateDto dto);
- }
- }
|