using System.Collections.Generic; using System.ServiceModel; namespace SSWMS.Common { [ServiceContract] public partial interface I_StorageService { [OperationContract] GOODS_MAIN GetGoodsMain(int iGoodsID); [OperationContract] GOODS_MAIN GetGoodsMainByGoodsCode(string sGoodsCode); [OperationContract] string GetStockBarcode(string sCellCode); [OperationContract] IList GetStorageList(string sStockBarcode); [OperationContract] bool DeleteStorage(int iStorageID, int iStorageListID, string sOperator, out string sResult); [OperationContract] bool StorageUpdate(List lStorageList, string sOperator, out string sResult); [OperationContract] bool EditStorage(STORAGE_MAIN smParameter, IList lStorageList, string sOperator, out string sResult); [OperationContract] List GetStorageListERP(string sStockBarcode, out string sResult); [OperationContract] bool StorageUpdateERP(List lGoodsBarcode, out string sResult); } }