You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
779 B
C#
20 lines
779 B
C#
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<GMisco>
|
|
{
|
|
public List<KeyValueResult> GetCustPDLineName();
|
|
public Hashtable getShippingListByPage(int PageSize, int PageIndex, string strWhere);
|
|
public Hashtable getShippingListDetailByPage(int PageSize, int PageIndex, string strWhere);
|
|
public List<GMisco> GetCountShipping(string whereStr);
|
|
public List<ShippingInformationDefine> getTableListByPage(string aWhere);
|
|
public List<GMiscoSn> GetCountShippingDetail(string whereStr);
|
|
}
|
|
}
|