IErpSyncServer.cs 622 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NXWMS.IService.NXWMS
  7. {
  8. public interface IErpSyncServer
  9. {
  10. Task<bool> UpdateArrival();
  11. Task<bool> UpdateArrival(string ArrivalNo);
  12. void UpdateBaseInfo();
  13. Task<bool> UpdateBin();
  14. Task<bool> UpdateCustomer();
  15. Task<bool> UpdateMateriel();
  16. Task<bool> UpdateMaterielType();
  17. Task<bool> UpdateOutInvoice();
  18. Task<bool> UpdateSuppliers();
  19. Task<bool> UpdateUnit();
  20. Task<bool> UpdateWarehouse();
  21. }
  22. }