using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
/// 办公系统员工表-数据库操作接口
///
public interface IOA_DepartmentDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
OA_Department GetModelByKeyid(int? Keyid);
///
/// 分页查询
///
///
///
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid MemberId, string MemberName, string Status);
///
/// 根据厂商编号获取员工列表
///
///
///
IEnumerable SelectListByFirmId(Guid FirmId);
///
/// 检测部门名称是否重复
///
///
///
///
///
int IsExitsName(string Name, Guid MemberId, int? Keyid);
}
}