wanshenmean
2024-10-21 2187fcbff389c2a7cc799845410580b37abfe921
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using Masuit.Tools;
using WIDESEA_Common;
using WIDESEA_DTO;
using WIDESEA_IStoragIntegrationServices;
 
namespace WIDESEA_StoragIntegrationServices;
 
public class ProcessApplyService : IProcessApplyService
{
    public async Task<dynamic> 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<dynamic>(null);
    }
}