using Masuit.Tools; using WIDESEA_Common; using WIDESEA_DTO; using WIDESEA_IStoragIntegrationServices; namespace WIDESEA_StoragIntegrationServices; public class ProcessApplyService : IProcessApplyService { public async Task ProcessApplyAsync(ProcessApplyDto input) { // TODO: Implement the logic to process the apply request try { var inputIson = input.ToDictionary(); var x = await HttpsClient.PostAsync("https://localhost:7178/api/Apply", inputIson); } catch (Exception ex) { Console.WriteLine(ex.Message); } return Task.FromResult(null); } }