Ejemplo n.º 1
0
        /// <summary>
        /// 删除一条数据
        /// </summary>
        public bool UpdateDelete(int DepartmentID, int EditId)
        {
            DepartmentInfoDAL dal = new DepartmentInfoDAL();

            return(dal.UpdateDelete(DepartmentID, EditId));
        }
Ejemplo n.º 2
0
        public List <DepartmentInfo> GetDepartmentInfolist(int ParentID, int RecordIsDelete)
        {
            DepartmentInfoDAL dal = new DepartmentInfoDAL();

            return(dal.GetDepartmentInfolist(ParentID, RecordIsDelete));
        }
Ejemplo n.º 3
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public DepartmentInfo GetDepartmentInfoOne(int DepartmentInfoId)
        {
            DepartmentInfoDAL dal = new DepartmentInfoDAL();

            return(dal.GetDepartmentInfoOne(DepartmentInfoId));
        }