using Dapper; using Estsh.Core.Model.ExcelModel; 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 IAndonInfoQueryRepository : 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 deletePartSNRule(String ruid); public List getTypeData(); public String isExsitPart_no(String part_no); public bool InsertData(List dt, int UserID); public int GetPartID(string partNo); public bool ExistsSNRule(int partID); public List getAndonCount(string condition); public List getAndonTime(string condition); public bool ExecuteSqlTransaction(List SqlStrings, List Parameters, ref string msg); } }