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 args = new Dictionary(); upload.UpLoad(args); DownLoadWarehouse download = new DownLoadWarehouse(); download.DownLoad(); } } }