123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using TempDbToUfida.OpenApi;
- using WangToTempDb;
- namespace YlInit
- {
- public class Warehouse : IProcess
- {
- public void Process()
- {
- WarehouseUpLoad upload = new WarehouseUpLoad();
- Dictionary<string, string> args = new Dictionary<string, string>();
- upload.UpLoad(args);
- DownLoadWarehouse download = new DownLoadWarehouse();
- download.DownLoad();
- }
- }
- }
|