示例#1
0
 public void Update(DbContext DbContext,Staff entity)
 {
     EntityState state = DbContext.Entry(entity).State;
        if (state == EntityState.Detached)
        {
       DbContext.Entry(entity).State = EntityState.Modified;
     }
 }
示例#2
0
        public override OperationResult Create(StaffInfo info)
        {
            OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
            using (var DbContext = new UCDbContext())
            {
                Staff entity = new Staff();
                DESwap.StaffDTE(info, entity);
                StaffRpt.Insert(DbContext, entity);

                /*关联角色是否为空*/
                if (info.StaffStationInfoList != null)
                {
                    /*****新增列表*********/
                    List<StaffStation> insertlist = new List<StaffStation>();
                    /*****删除列表*********/
                    List<StaffStation> deletelist = new List<StaffStation>();

                    /*原有列表*/
                    var existlist = (from i in DbContext.StaffStation
                                     where i.StaffId.Equals(info.Id)
                                     select i).ToList();

                    /*************如果为选中且没有关联表id则为新增******************/
                    foreach (var rfinfo in info.StaffStationInfoList)
                    {
                        if (string.IsNullOrEmpty(rfinfo.Id) && rfinfo.Selected)
                        {
                            /*************如果为选中且没有关联表id则为新增******************/
                            rfinfo.Id = System.Guid.NewGuid().ToString();
                            rfinfo.StaffId = info.Id;
                            StaffStation staffStation = new StaffStation();
                            DESwap.StaffStationDTE(rfinfo, staffStation);
                            insertlist.Add(staffStation);
                        }
                        else if (!string.IsNullOrEmpty(rfinfo.Id) && rfinfo.Selected == false)
                        {
                            /*************如果为未选中且有关联表id则为删除******************/
                            var staffStation = existlist.Where(x => x.Id.Equals(rfinfo.Id)).FirstOrDefault();
                            if (staffStation == null)
                            {
                                deletelist.Add(staffStation);
                            }
                        }
                    }

                    StaffStationRpt.Insert(DbContext, insertlist);
                    StaffStationRpt.Delete(DbContext, deletelist);
                }
                DbContext.SaveChanges();

                result.ResultType = OperationResultType.Success;
                result.Message = "操作成功!";
                return result;
            }
        }
示例#3
0
 public virtual OperationResult Create(StaffInfo info)
 {
     OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
     using (var DbContext = new UCDbContext())
     {
       Staff entity = new Staff();
       DESwap.StaffDTE(info, entity);
       StaffRpt.Insert(DbContext, entity);
       DbContext.SaveChanges();
     }
     result.ResultType = OperationResultType.Success;
     result.Message = "操作成功!";
     return result;
 }
示例#4
0
 public virtual OperationResult Create(IEnumerable<StaffInfo> infoList)
 {
     OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
     List<Staff> eList = new List<Staff>();
     infoList.ForEach(x =>
     {
         Staff entity = new Staff();
         DESwap. StaffDTE(x, entity);
         eList.Add(entity);
     });
     using (var DbContext = new UCDbContext())
     {
     StaffRpt.Insert(DbContext, eList);
     DbContext.SaveChanges();
     }
     result.ResultType = OperationResultType.Success;
     result.Message = "操作成功!";
     return result;
 }
示例#5
0
        public static void StaffETD(Staff entity, StaffInfo info)
        {
            info.Id = entity.Id;
               info._IdIsDirty = 0;

               info.UserCode = entity.UserCode;
               info._UserCodeIsDirty = 0;

               info.Password = entity.Password;
               info._PasswordIsDirty = 0;

               info.UserName = entity.UserName;
               info._UserNameIsDirty = 0;

               info.Sex = entity.Sex;
               info._SexIsDirty = 0;

               info.BrithDate = entity.BrithDate;
               info._BrithDateIsDirty = 0;

               info.Phone = entity.Phone;
               info._PhoneIsDirty = 0;

               info.Fax = entity.Fax;
               info._FaxIsDirty = 0;

               info.Mobile = entity.Mobile;
               info._MobileIsDirty = 0;

               info.Email = entity.Email;
               info._EmailIsDirty = 0;

               info.DepartmentId = entity.DepartmentId;
               info._DepartmentIdIsDirty = 0;

               info.RegionId = entity.RegionId;
               info._RegionIdIsDirty = 0;

               info.DetailAddress = entity.DetailAddress;
               info._DetailAddressIsDirty = 0;

               info.ZipCode = entity.ZipCode;
               info._ZipCodeIsDirty = 0;

               info.IsLogin = entity.IsLogin;
               info._IsLoginIsDirty = 0;

               info.IsVerify = entity.IsVerify;
               info._IsVerifyIsDirty = 0;

               info.SYS_OrderSeq = entity.SYS_OrderSeq;
               info._SYS_OrderSeqIsDirty = 0;

               info.SYS_IsValid = entity.SYS_IsValid;
               info._SYS_IsValidIsDirty = 0;

               info.SYS_IsDeleted = entity.SYS_IsDeleted;
               info._SYS_IsDeletedIsDirty = 0;

               info.SYS_Remark = entity.SYS_Remark;
               info._SYS_RemarkIsDirty = 0;

               info.SYS_StaffId = entity.SYS_StaffId;
               info._SYS_StaffIdIsDirty = 0;

               info.SYS_StationId = entity.SYS_StationId;
               info._SYS_StationIdIsDirty = 0;

               info.SYS_DepartmentId = entity.SYS_DepartmentId;
               info._SYS_DepartmentIdIsDirty = 0;

               info.SYS_CompanyId = entity.SYS_CompanyId;
               info._SYS_CompanyIdIsDirty = 0;

               info.SYS_AppId = entity.SYS_AppId;
               info._SYS_AppIdIsDirty = 0;

               info.SYS_CreateTime = entity.SYS_CreateTime;
               info._SYS_CreateTimeIsDirty = 0;

               info.SYS_ModifyTime = entity.SYS_ModifyTime;
               info._SYS_ModifyTimeIsDirty = 0;

               info.SYS_DeleteTime = entity.SYS_DeleteTime;
               info._SYS_DeleteTimeIsDirty = 0;
        }
示例#6
0
 public void Insert(DbContext DbContext,Staff entity)
 {
     DbContext.Entry(entity).State = EntityState.Added;
 }
示例#7
0
 public void Delete(DbContext DbContext,Staff  entity)
 {
     DbContext.Entry(entity).State = EntityState.Deleted;
 }