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.

29 lines
1.1 KiB
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IRollDefineService : IBaseService<SysBom>
{
public List<GRoll> GetQuery(string awhere);
public List<KeyValueResult> GetRollNO();
public List<KeyValueResult> GetRollName();
public Hashtable getRollDetail(String ruid);
public int deleteRoll(String ids);
public int EnableData(String ids);
public int DisableData(String ids);
public Hashtable getRollListByPage(String cust_pdline_id, String roll_no, String roll_name, String roll_type, Pager pager, String direction, String sort, String factoryId, String enabled);
public int insertRoll(GRoll htParams);
public int updateRoll(GRoll htParams);
public List<KeyValueResult> GetCustPDLine();
public List<KeyValueResult> GetMode_type(string CustPDLine);
public List<KeyValueResult> GetModelList(int ModelType);
public bool IsExistOrd(string rollno);
public List<KeyValueResult> GetCustID();
}
}