Vendor.cs 550 B

12345678910111213141516171819202122232425
  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 YlInit
  9. {
  10. public class Vendor : IProcess
  11. {
  12. public void Process()
  13. {
  14. VendorUpLoad upload = new VendorUpLoad();
  15. Dictionary<string, string> args = new Dictionary<string, string>();
  16. upload.UpLoad(args);
  17. DownLoadVendor download = new DownLoadVendor();
  18. download.DownLoad();
  19. }
  20. }
  21. }