You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1019 B
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using Estsh.Core.Util;
using System.Collections;
using System.Data;
namespace Estsh.Core.Repository.IRepositories
{
public interface IStockDetailQueryRepository : IBaseRepository<SysStock>
{
public Hashtable getZoneList(int PageSize, int PageIndex, string strWhere, string OrderBy);
public List<SysStock> getLocateListByPage(string strWhere);
public List<SysStock> getListByPage(string strWhere);
public List<KeyValueResult> GetStockType();
public String isExsitPart_no(String part_no);
public List<KeyValueResult> GetPartNo();
public List<KeyValueResult> GetLocateName();
public List<KeyValueResult> GetSysEnum(string enumtype);
public List<KeyValueResult> GetWareHouseName();
public List<StockDetailQuery> getExportList(string strWhere);
public int EnableData(string id, string empId);
}
}