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 { public List GetQuery(string awhere); public List getList(string strWhere, string filedOrder); public List GetRollNO(); public List 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 GetCustPDLine(); public List GetMode_type(string CustPDLine); public List GetModelList(int ModelType); public List getRollNoList(string strWhere); public List GetCustID(); } }