using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; using System.Data; namespace Estsh.Core.Services.IServices { public interface IShippingInformationDefineService : IBaseService { public List GetCustPDLineName(); public Hashtable getShippingListByPage(String where, Pager pager); public Hashtable getShippingListDetailByPage(String where, Pager pager); public List GetCountShipping(string aWhere); public List getTableListByPage(string aWhere); public List GetCountShippingDetail(string aWhere); } }