Ejemplo n.º 1
0
 public void DeleteStaff(List<int> ids)
 {
     using (var dbContext = new OADbContext())
     {
         dbContext.Staffs.Where(u => ids.Contains(u.ID)).Delete();
     }
 }
Ejemplo n.º 2
0
 public Branch GetBranch(int id)
 {
     using (var dbContext = new OADbContext())
     {
         return dbContext.Find<Branch>(id);
     }
 }
Ejemplo n.º 3
0
 public Staff GetStaff(int id)
 {
     using (var dbContext = new OADbContext())
     {
         return dbContext.Staffs.Include("Branch").FirstOrDefault(a => a.ID == id);
     }
 }
Ejemplo n.º 4
0
        public IEnumerable<Branch> GetBranchList(BranchRequest request = null)
        {
            request = request ?? new BranchRequest();
            using (var dbContext = new OADbContext())
            {
                IQueryable<Branch> branchs = dbContext.Branchs;

                if (!string.IsNullOrEmpty(request.Name))
                    branchs = branchs.Where(u => u.Name.Contains(request.Name));

                return branchs.OrderByDescending(u => u.ID).ToPagedList(request.PageIndex, request.PageSize);
            }
        }
Ejemplo n.º 5
0
        public void SaveStaff(Staff staff)
        {
            using (var dbContext = new OADbContext())
            {

                if (staff.ID > 0)
                {
                    dbContext.Update<Staff>(staff);
                }
                else
                {
                    dbContext.Insert<Staff>(staff);
                }
            }
        }
Ejemplo n.º 6
0
        public IEnumerable<Staff> GetStaffList(StaffRequest request = null)
        {
            request = request ?? new StaffRequest();
            using (var dbContext = new OADbContext())
            {
                IQueryable<Staff> staffs = dbContext.Staffs.Include("Branch");

                if (!string.IsNullOrEmpty(request.Name))
                    staffs = staffs.Where(u => u.Name.Contains(request.Name));

                if (request.BranchId > 0)
                    staffs = staffs.Where(u => u.BranchId == request.BranchId);

                return staffs.OrderByDescending(u => u.ID).ToPagedList(request.PageIndex, request.PageSize);
            }
        }
Ejemplo n.º 7
0
 public void SaveBranch(Branch branch)
 {
     using (var dbContext = new OADbContext())
     {
         if (branch.ID > 0)
         {
             dbContext.Update<Branch>(branch);
         }
         else
         {
             dbContext.Insert<Branch>(branch);
         }
     }
 }
Ejemplo n.º 8
0
        /// <summary>
        /// 保存树形组织结构(刷全表数据/BatchUpdate),先取出来所有的Branch,Staff的ParentId为0,然后在根据RootBranch的树形结构赋对应的值
        /// </summary>
        /// <param name="rootBranch"></param>
        public void SaveOrg(Branch rootBranch)
        {
            using (var dbContext = new OADbContext())
            {
                var branchs = dbContext.Branchs.ToList();
                branchs.ForEach(b => b.ParentId = 0);

                var staffs = dbContext.Staffs.ToList();
                staffs.ForEach(s => s.BranchId = 0);

                UpdateOrg(branchs, staffs, rootBranch);

                dbContext.SaveChanges();
            }
        }
Ejemplo n.º 9
0
        /// <summary>
        /// 返回树形组织结构,根节点RootBranch(id=0, ParentId=0),其下Staff和Branch为未分配的,根节点下的第一个节点为TopBranch(id=1, ParantId=0),其他ParentId=0的归为RootBranch下
        /// </summary>
        /// <returns></returns>
        public Branch GetOrg()
        {
            using (var dbContext = new OADbContext())
            {
                var branchs = dbContext.Branchs.ToList();
                var staffs = dbContext.Staffs.ToList();

                var branch = new Branch();
                AppendBranch(branchs, staffs, branch);

                return branch;
            }
        }