using System.Collections; using System.Collections.Generic; using SSWMS.Common; namespace SSWMS.Server { public class P_WH_CELL : P_Base_House { public WH_CELL GetModelByCellCode(string sCellCode) { return this._sqlMap.QueryForObject("WH_CELL_SELECT_BY_CELL_CODE", sCellCode); } public IList GetListByCellZ(string sWarehouseCode, int iCellZ) { return this._sqlMap.QueryForList("WH_CELL_SELECT_BY_CELL_Z", new Hashtable { { "WAREHOUSE_CODE", sWarehouseCode }, { "CELL_Z", iCellZ } }); } } }