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; namespace Estsh.Core.Repository.IRepositories { public interface IProduceStockRepository : IBaseRepository { public List getList(string strWhere, string filedOrder); public Hashtable GetSummary(string strWhere, Pager pager); public List GetSummaryDtail(string _where, string typeID); public Hashtable GetDetail(string strWhere, Pager pager); public Hashtable GetStatisticsData(string strWhere, Pager pager); public Hashtable getListByPage(String type_id, int PageSize, int PageIndex, string strWhere, string OrderBy); public int saveProduceStock(SysPartCustOrder htParams); public int updateProduceStock(SysPartCustOrder htParams); public int deleteProduceStock(String part_id); public List getType(); public Hashtable getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); } }