using System.Collections.Generic; using System.Data; using System.ServiceModel; namespace SSWMS.Common { [ServiceContract] public partial interface I_CellService { [OperationContract] bool InitCell(out string sResult); [OperationContract] bool UpdateCellFlag(string sWarehouseCode, string sCellFlag, int iStartX, int iEndX, int iStartY, int iEndY, int iStartZ, int iEndZ, string sRemark, out string sResult); [OperationContract] IList GetCellByCellZ(string sWarehouseCode, int iCellZ, int iUserID = 0); [OperationContract] DataTable GetCellZ(string sWarehouseCode); } }