VendorBll.cs 558 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using TempDbToUfida.OpenApi;
  7. using WangToTempDb;
  8. namespace YiLvRunFrom.BLL
  9. {
  10. public class VendorBll : IBll
  11. {
  12. public void Process()
  13. {
  14. VendorUpLoad upload = new VendorUpLoad();
  15. DownLoadVendor download = new DownLoadVendor();
  16. Dictionary<string, string> args = new Dictionary<string, string>();
  17. upload.UpLoad(args);
  18. download.DownLoad();
  19. }
  20. }
  21. }