2025-03-16 03:17:36 +08:00

10 lines
370 B
C#

// See https://aka.ms/new-console-template for more information
using System.Text.Json;
using Seyounth.Hyosung.Data.Services.Hyosung;
Console.WriteLine("Hello, World!");
IHyosungWmsService wmsService=new HyosungWmsService();
var data= wmsService.GetItemInfoByItemCode("TYY-JPS1843018G").Result;
Console.WriteLine(JsonSerializer.Serialize(data));
Console.ReadLine();