123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using TempDbToUfida.OpenApi;
- using WangToTempDb;
- namespace YiLvRunFrom.BLL
- {
- public class InventoryBll : IBll
- {
- public void Process()
- {
- Common.WangToMiddle(new InventoryUpLoad(), "存货");
- DownLoadInventory download = new DownLoadInventory();
- download.DownLoad();
- }
-
- }
- }
|