public Role(int currentRoleId) { this.dataRole = new LTP.Accounts.Data.Role(); DataRow row = this.dataRole.Retrieve(currentRoleId); this.roleId = currentRoleId; if (row["Description"] != null) { this.description = (string) row["Description"]; } Permission permission = new Permission(); this.permissions = permission.GetPermissionList(currentRoleId); this.nopermissions = permission.GetNoPermissionList(currentRoleId); this.users = new LTP.Accounts.Data.User().GetUsersByRole(currentRoleId); }
public Role(int currentRoleId) { this.dataRole = new LTP.Accounts.Data.Role(); DataRow row = this.dataRole.Retrieve(currentRoleId); this.roleId = currentRoleId; if (row["Description"] != null) { this.description = (string)row["Description"]; } Permission permission = new Permission(); this.permissions = permission.GetPermissionList(currentRoleId); this.nopermissions = permission.GetNoPermissionList(currentRoleId); this.users = new LTP.Accounts.Data.User().GetUsersByRole(currentRoleId); }
public static DataSet GetRoleList() { LTP.Accounts.Data.Role role = new LTP.Accounts.Data.Role(); return(role.GetRoleList()); }
public static DataSet GetRoleList() { LTP.Accounts.Data.Role role = new LTP.Accounts.Data.Role(); return role.GetRoleList(); }
public Role() { this.dataRole = new LTP.Accounts.Data.Role(); }
public bool Update() { Data.Role role = new LTP.Accounts.Data.Role(PubConstant.ConnectionString); return(role.Update(this.roleId, this.description)); }