using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL.Inquiry
{
///
/// LDE材质管理接口
///
public interface ISysInquiry_LEDMaterialDAL : ICommonDAL
{
///
/// 分页返回LDE材质列表
///
/// 名称
/// 分页参数
///
IEnumerable SelectModelPage(string typeName, string status, Infrastructure.Query.Pagination pagination);
///
/// 根据主键返回LDE材质实体
///
/// 主键ID
/// LDE材质
Model.SysInquiry_LEDMaterial SelectModelByKey(int keyid);
///
/// 获取最新排序顺序
///
///
int GetOrderNumByMax();
///
/// 获取有效的LDE材质列表
///
///
IList GetModelList();
///
/// 判断是否存在相同的数据
///
///
///
bool IsExist(string name);
}
}