lss
2025-05-30 38eff4fc0100131b180ffa872009b502629743f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using Newtonsoft.Json;
using NaTeWebApi.Services;
using NaTeWebApi.Controllers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using static NaTeWebApi.Controllers.AMSModel;
 
using System.Configuration;
using Demo;
 
namespace NaTeWebApi.Models
{
    public class ApiHelper
    {
        internal static SimpleResultModel xxptmstrget(xxptmstrgetmodel model)
        {
            var result = new SimpleResultModel();
 
            ptin pt = new ptin { pt_from = model.pt_from, pt_to = model.pt_to };
            var client = new QAD();
            client.Url = "http://192.168.1.51:23/QAD.asmx";//http://172.17.0.106:806/QAD.asmx
            client.xxptmstrget(model.input_domain,pt);
 
            return result;
        }
    }
}