18 lines
341 B
C#
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();
|
|
}
|
|
}
|
|
}
|