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