using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; using System.Data; namespace Estsh.Core.Services.IServices { public interface IPurchaseScheduleSingleService : IBaseService { public Hashtable GetQuery(string aWhere); public List getTableListByPage(string aWhere); public Hashtable GetStockDetail(string orderNo, string typeName); public List GetPart(string part_no); public List GetVendor(string key); public List GetFactory(); public List GetType(); public bool UpdateIsClose(string ruid); public bool ChangeDetailStatus(bool status, DataRow dr); public bool DeleteDetail(DataRow dr); public string GetSysBase(); } }