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.

27 lines
1.1 KiB
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
namespace Estsh.Core.Repository.IRepositories
{
public interface IRollDefineRepository : IBaseRepository<GRoll>
{
public List<GRoll> GetQuery(string awhere);
public List<GRoll> getList(string strWhere, string filedOrder);
public List<KeyValueResult> GetRollNO();
public List<KeyValueResult> GetRollName();
public int deleteRoll(String ruid);
public int EnableData(String ids);
public int DisableData(String ids);
public int insertRoll(GRoll htParams);
public int updateRoll(GRoll htParams);
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public List<KeyValueResult> GetCustPDLine();
public List<KeyValueResult> GetMode_type(string CustPDLine);
public List<KeyValueResult> GetModelList(int ModelType);
public List<GRoll> getRollNoList(string strWhere);
public List<KeyValueResult> GetCustID();
}
}