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.
21 lines
723 B
C#
21 lines
723 B
C#
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<GMisco>
|
|
{
|
|
public List<KeyValueResult> GetCustPDLineName();
|
|
public Hashtable getShippingListByPage(String where, Pager pager);
|
|
public Hashtable getShippingListDetailByPage(String where, Pager pager);
|
|
public List<GMisco> GetCountShipping(string aWhere);
|
|
|
|
public List<ShippingInformationDefine> getTableListByPage(string aWhere);
|
|
public List<GMiscoSn> GetCountShippingDetail(string aWhere);
|
|
}
|
|
}
|