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.
24 lines
903 B
C#
24 lines
903 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
using System.Data;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface ICustPreQtyRepository : IBaseRepository<SysCustPdlineProdinfo>
|
|
{
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public string GetOutPDLineMaxCarNo(string custPDLineName);
|
|
public List<SysCustPdlineProdinfo> ExistsCustPDLine(int custPDLineID);
|
|
public List<KeyValueResult> getCust_pdline();
|
|
public bool edit(int custPDLineID, string cust_pdline_seq, string cycle_time, int update_userid);
|
|
public int delete(int custPDLineID);
|
|
|
|
public int EnableData(String Ids);
|
|
public int DisableData(String Ids);
|
|
public int Save(SysCustPdlineProdinfo htParams);
|
|
}
|
|
}
|