12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.IService.NXWMS
- {
- public interface IErpSyncServer
- {
- Task<bool> UpdateArrival();
- Task<bool> UpdateArrival(string ArrivalNo);
- void UpdateBaseInfo();
- Task<bool> UpdateBin();
- Task<bool> UpdateCustomer();
- Task<bool> UpdateMateriel();
- Task<bool> UpdateMaterielType();
- Task<bool> UpdateOutInvoice();
- Task<bool> UpdateSuppliers();
- Task<bool> UpdateUnit();
- Task<bool> UpdateWarehouse();
- }
- }
|