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 ICartonTrackRepository : IBaseRepository { public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public List getExportList(string strWhere, string orderBy); public List getSelectCartonTrack(); public List GetLocateType(); } }