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.

25 lines
1.1 KiB
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;
namespace Estsh.Core.Repository.IRepositories
{
public interface IProduceStockRepository : IBaseRepository<GWorkorder>
{
public List<SysPartCustOrder> getList(string strWhere, string filedOrder);
public Hashtable GetSummary(string strWhere, Pager pager);
public List<GWorkorder> 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<KeyValueResult> getType();
public Hashtable getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
}
}