Ejemplo n.º 1
0
        public bool DeleteUserRole(string username, string[] roles)
        {
            try
            {
                int uid = DAL.UsersDAL.StaticUserId(0, username).UserID;

                for (int i = 0; i < roles.Count(); i++)
                {
                    MasterRole objMasterRole = GetRoles().Where(x => x.RoleName == roles[i]).FirstOrDefault();
                    if (db.JuncUserRoles.Where(x => x.RoleID == objMasterRole.RoleID).Count() > 0)
                    {
                        foreach (JuncUserRole objUserRole in db.JuncUserRoles.Where(x => x.UserID == uid))
                        {
                            db.JuncUserRoles.Remove(objUserRole);
                        }
                    }
                }

                db.SaveChanges();
                return(true);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 2
0
        public bool InsertMasterRole(MasterRole objMasterRole)
        {
            try
            {
                db.MasterRoles.Add(objMasterRole);
                db.SaveChanges();

                BPEventLog bpe = new BPEventLog();
                bpe.Object           = "Roles";
                bpe.ObjectName       = objMasterRole.RoleName;
                bpe.ObjectChanges    = string.Empty;
                bpe.EventMassage     = "Success";
                bpe.Status           = "A";
                bpe.CreatedTimeStamp = DateTime.Now;
                new EventLogDAL().AddEventLog(bpe);

                return(true);
            }
            catch (Exception ex)
            {
                BPEventLog bpe = new BPEventLog();
                bpe.Object           = "Roles";
                bpe.ObjectName       = objMasterRole.RoleName;
                bpe.ObjectChanges    = string.Empty;
                bpe.EventMassage     = "Failure";
                bpe.Status           = "A";
                bpe.CreatedTimeStamp = DateTime.Now;
                new EventLogDAL().AddEventLog(bpe);

                throw ex;
            }
        }
Ejemplo n.º 3
0
        public bool UpdateStatusOnRole(JuncUserRole objUserRole)
        {
            try
            {
                MasterRole _role = db.MasterRoles.Where(x => x.RoleID == objUserRole.RoleID).FirstOrDefault();
                _role.RoleStatus = objUserRole.Status;
                db.SaveChanges();

                return(true);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 4
0
        public bool UpdateMasterRole(MasterRole objMasterRole)
        {
            MasterRole obj     = db.MasterRoles.Where(x => x.RoleID == objMasterRole.RoleID).FirstOrDefault();
            string     changes = new EventLogDAL().ObjectDifference(obj, objMasterRole);

            try
            {
                if (obj != null)
                {
                    obj.RoleName    = objMasterRole.RoleName;
                    obj.Description = objMasterRole.Description;
                    obj.RoleStatus  = objMasterRole.RoleStatus;
                    db.SaveChanges();

                    BPEventLog bpe = new BPEventLog();
                    bpe.Object           = "Roles";
                    bpe.ObjectName       = objMasterRole.RoleName;
                    bpe.ObjectChanges    = changes;
                    bpe.EventMassage     = "Success";
                    bpe.Status           = "A";
                    bpe.CreatedTimeStamp = DateTime.Now;
                    new EventLogDAL().AddEventLog(bpe);
                }
                return(true);
            }
            catch (Exception ex)
            {
                BPEventLog bpe = new BPEventLog();
                bpe.Object           = "Roles";
                bpe.ObjectName       = objMasterRole.RoleName;
                bpe.ObjectChanges    = changes;
                bpe.EventMassage     = "Failure";
                bpe.Status           = "A";
                bpe.CreatedTimeStamp = DateTime.Now;
                new EventLogDAL().AddEventLog(bpe);

                throw ex;
            }
        }