protected void Button47_Click(object sender, EventArgs e) { BPrecard bus = new BPrecard(); IList <Role> roleList = new List <Role>(); roleList.Add(new Role() { ID = 2 }); roleList.Add(new Role() { ID = 4 }); roleList.Add(new Role() { ID = 5 }); roleList.Add(new Role() { ID = 6 }); bus.UpdateRoleAccess(2, roleList); NHibernateSessionManager.Instance.ClearSession(); BRole bus2 = new BRole(); Role r = bus2.GetByID(2); NHibernateSessionManager.Instance.ClearSession(); BRequest u2 = new BRequest(); u2.GetAllDailyLeaves(); }
/// <summary> /// چکیده اطلاعات پرسنل را بر می گرداند /// </summary> /// <returns>لیست چکیده اطلاعات پرسنل</returns> public IList <PersonInfoProxy> GetPersonInfo() { try { IList <PersonInfoProxy> list = new List <PersonInfoProxy>(); if (BUser.CurrentUser.Person != null) { Person currentPrs = new BPerson().GetByID(BUser.CurrentUser.Person.ID); PersonInfoProxy proxy = new PersonInfoProxy(); #region Person Name proxy.Active = true; proxy.Order = 1; proxy.Value = BUser.CurrentUser.Person.Name; if (BLanguage.CurrentLocalLanguage == LanguagesName.Parsi) { proxy.Title = "نام"; } else { proxy.Title = "Name"; } proxy.Title += "<BR/>"; list.Add(proxy); #endregion #region Person Code proxy = new PersonInfoProxy(); proxy.Active = true; proxy.Order = 2; proxy.Value = currentPrs.PersonCode; if (BLanguage.CurrentLocalLanguage == LanguagesName.Parsi) { proxy.Title = "شماره پرسنلی"; } else { proxy.Title = "Person Code"; } proxy.Title += "<BR/>"; list.Add(proxy); #endregion #region Employment Date proxy = new PersonInfoProxy(); proxy.Active = true; proxy.Order = 3; if (BLanguage.CurrentLocalLanguage == LanguagesName.Parsi) { proxy.Value = Utility.ToPersianDate(currentPrs.EmploymentDate); proxy.Title = "تاریخ استخدام"; } else { proxy.Value = Utility.ToString(currentPrs.EmploymentDate); proxy.Title = "Employ Date"; } if (currentPrs.EmploymentDate == Utility.GTSMinStandardDateTime) { proxy.Value = " --- "; } else { proxy.Title += "<BR/>"; list.Add(proxy); } #endregion #region Department Name if (currentPrs.Department != null) { proxy = new PersonInfoProxy(); proxy.Active = true; proxy.Order = 4; proxy.Value = currentPrs.Department.Name; if (BLanguage.CurrentLocalLanguage == LanguagesName.Parsi) { proxy.Title = "نام بخش"; } else { proxy.Title = "Department Name"; } if (!Utility.IsEmpty(proxy.Value)) { proxy.Title += "<BR/>"; list.Add(proxy); } } #endregion #region Organization Unit Name /* * if (currentPrs.OrganizationUnit != null) * { * proxy = new PersonInfoProxy(); * proxy.Active = true; * proxy.Order = 5; * proxy.Value = currentPrs.OrganizationUnit.Name; * if (BLanguage.CurrentLocalLanguage == LanguagesName.Parsi) * { * proxy.Title = "سمت"; * } * else * { * proxy.Title = "Organization Unit Name"; * } * list.Add(proxy); * } * */ #endregion #region Flow Manager GTS.Clock.Infrastructure.Repository.RequestStatusRepositiory reqStatusRep = new GTS.Clock.Infrastructure.Repository.RequestStatusRepositiory(false); IList <RegisteredRequestsFlowLevel> levels = reqStatusRep.GetRequestLevels(currentPrs.Department.ID, currentPrs.ID); if (levels != null && levels.Count > 0) { levels = levels.Where(x => x.FlowID == levels.First().FlowID).OrderBy(x => x.ManagerLevel).ToList(); proxy = new PersonInfoProxy(); proxy.Active = true; proxy.Order = 5; var managers = from manager in levels select manager.ManagerName; proxy.Value = string.Join(" , ", managers.ToArray <string>()); if (BLanguage.CurrentLocalLanguage == LanguagesName.Parsi) { proxy.Title = "مدیران"; } else { proxy.Title = "Managers"; } proxy.Title += "<BR/>"; list.Add(proxy); } #endregion #region UserRoles proxy = new PersonInfoProxy(); proxy.Active = true; proxy.Order = 6; proxy.Value = BUser.CurrentUser.Role.Name; if (BLanguage.CurrentLocalLanguage == LanguagesName.Parsi) { proxy.Title = "نقش اصلی"; } else { proxy.Title = "Basic Role"; } proxy.Title += "<BR/>"; list.Add(proxy); if (SessionHelper.HasSessionValue(SessionHelper.GTSCurrentUserManagmentState)) { string separator = " , "; BRole bRole = new BRole(); Role role = null; proxy = new PersonInfoProxy(); proxy.Active = true; proxy.Order = 8; proxy.Value = string.Empty; if (BLanguage.CurrentLocalLanguage == LanguagesName.Parsi) { proxy.Title = "نقش های مجازی"; } else { proxy.Title = "Virtual Roles"; } proxy.Title += "<BR/>"; Dictionary <string, object> ManagementState = (Dictionary <string, object>)SessionHelper.GetSessionValue(SessionHelper.GTSCurrentUserManagmentState); if (ManagementState.ContainsKey("IsManager") && (bool)ManagementState["IsManager"] && ManagementState.ContainsKey("ManagerRoleId")) { role = bRole.GetByID((decimal)ManagementState["ManagerRoleId"]); proxy.Value = role.Name; this.NHSession.Evict(role); } if (ManagementState.ContainsKey("IsOperator") && (bool)ManagementState["IsOperator"] && ManagementState.ContainsKey("OperatorRoleId")) { role = bRole.GetByID((decimal)ManagementState["OperatorRoleId"]); if (proxy.Value != string.Empty) { proxy.Value += separator; } proxy.Value += role.Name; this.NHSession.Evict(role); } if (ManagementState.ContainsKey("IsSubstitute") && (bool)ManagementState["IsSubstitute"] && ManagementState.ContainsKey("SubstituteRoleId")) { role = bRole.GetByID((decimal)ManagementState["SubstituteRoleId"]); if (proxy.Value != string.Empty) { proxy.Value += separator; } proxy.Value += role.Name; this.NHSession.Evict(role); } if (proxy.Value != string.Empty) { list.Add(proxy); } } #endregion } return(list); } catch (Exception ex) { BaseBusiness <Entity> .LogException(ex, "BPersonInfoBoxService", "GetPersonInfo"); throw new Exception("خطا در بارگزاری اطلاعات شخصی"); } }
public void GetByID_Test() { role_testObject = busRole.GetByID(ADORole1.ID); Assert.AreEqual(role_testObject.ParentId, ADORootRole.ID); }