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.
22 lines
969 B
C#
22 lines
969 B
C#
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface ICustomerOrderService : IBaseService<SysPartCustOrder>
|
|
{
|
|
public Hashtable getCustomerOrderListByPage(String part_no, String cust_order, Pager pager, String direction, String sort, String enabled);
|
|
public int saveCustomerOrder(SysPartCustOrder htParams);
|
|
public int updateCustomerOrder(SysPartCustOrder htParams);
|
|
public List<SysPartCustOrder> getCustomerOrder(String part_id);
|
|
public int deleteCustomerOrder(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public List<KeyValueResult> getSelectCustomerOrder();
|
|
public Hashtable getTableListByPage(String part_no, String cust_order, Pager pager, String direction, String sort, Boolean isPage);
|
|
}
|
|
}
|