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
743 B
C#
20 lines
743 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface ICustPreQtyService : IBaseService<SysCustPdlineProdinfo>
|
|
{
|
|
public Hashtable getListByPage(String sql, Pager pager, String direction, String sort);
|
|
public Hashtable ExistsCustPDLine(int custPDLineID);
|
|
public bool edit(int custPDLineID, string cust_pdline_seq, string cycle_time, int update_userid);
|
|
public int Delete(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public int Save(SysCustPdlineProdinfo htParams);
|
|
public List<KeyValueResult> getCust_pdline();
|
|
}
|
|
}
|