Files
CPXV2/CPXV2 TRA JSON/SystemX.Product.CP.TRA.Extract/Program.cs
2026-02-10 13:16:41 +09:00

18 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SystemX.Product.CP.TRA.Extract
{
internal class Program
{
static void Main(string[] args)
{
DBService dbS = new DBService();
dbS.GetLargeData();
}
}
}