using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using System.Collections; using System.Data; namespace Estsh.Core.Repository.IRepositories { public interface IPurchasePrintRepository : IBaseRepository { public List getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public List getBuyNo(); public String GetOrderNo(string orderType, string orderPrefix); public List getPartNo(String buyNo); public bool saveBuyOrder(Hashtable htData); public bool deleteBuyOrder(Hashtable htData); public bool EnableData(Hashtable htData); public bool DisableData(Hashtable htData); public List getBuyOrder(Hashtable htData); public List getBuyOrderStock(Hashtable htData); } }