using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; namespace Estsh.Core.Services.IServices { public interface IPurchasePrintService : IBaseService { public List GetListByPage(String stage_name, Pager pager, String direction, String sort); public List getBuyNo(); public String getOrderNo(string orderType, string orderPrefix); public List getPartNo(String buyNo); public Hashtable saveBuyOrder(Hashtable ht); public Hashtable deleteBuyOrder(Hashtable ht); public Hashtable EnableData(Hashtable ht); public Hashtable DisableData(Hashtable ht); } }