using Estsh.Core.Base; 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 IQualityResultRepository : IBaseRepository { public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public List getSearchDataList(string strWhere,string orderBy); } }