using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using Estsh.Core.Util; using System.Collections; namespace Estsh.Core.Repository.IRepositories { public interface ILotDefineRepository : IBaseRepository { public List GetQuery(string whereStr, Pager pager, ref int totalCount); public Hashtable getTableListByPage(string whereStr, Pager pager); } }