using Dapper; 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 IShippingInformationDefineRepository : IBaseRepository { public List GetCustPDLineName(); public Hashtable getShippingListByPage(int PageSize, int PageIndex, string strWhere); public Hashtable getShippingListDetailByPage(int PageSize, int PageIndex, string strWhere); public List GetCountShipping(string whereStr); public List getTableListByPage(string aWhere); public List GetCountShippingDetail(string whereStr); } }