using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using System.Collections; namespace Estsh.Core.Repository.IRepositories { public interface IPartSNRuleDefineRepository : IBaseRepository { public List getList(string strWhere, string filedOrder); public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public Hashtable getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public int savePartSNRule(SysPartSnRule htParams); public int updatePartSNRule(SysPartSnRule htParams); public int deletePartSNRule(String ruid); public int EnableData(String ids); public int DisableData(String ids); public List getTypeData(); public String isExsitPart_no(String part_no); public bool InsertData(List dt, string userID); public int GetPartID(string partNo); public bool ExistsSNRule(int partID); } }