1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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<List<ExchangeRateModel>> PostItemRateAsync(string[] currencyCodes);
-
-
-
-
- Task<Result> GetExchangeRateAsync(ExchangeRateDto dto);
-
-
-
-
-
-
-
- Task<string> GetTextTranslateAsync(string source, string trans_type = "zh2en");
- }
- }
|