BootstrapAdmin/Bootstrap.Admin/Models/HeaderBarModel.cs

55 lines
1.7 KiB
C#
Raw Normal View History

using Bootstrap.DataAccess;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Bootstrap.Admin.Models
{
/// <summary>
///
/// </summary>
public class HeaderBarModel : ModelBase
{
public HeaderBarModel()
{
var user = UserHelper.RetrieveUsersByName(HttpContext.Current.User.Identity.Name);
DisplayName = user.DisplayName;
UserName = user.UserName;
UserID = user.ID;
HomeUrl = "~/";
Menus = MenuHelper.RetrieveLinksByUserName(UserName);
var notis = NotificationHelper.RetrieveNotifications();
NotifiCount = notis.Count();
Notifications = notis.Take(6);
}
public string UserName { get; protected set; }
/// <summary>
///
/// </summary>
public int UserID { get; protected set; }
/// <summary>
///
/// </summary>
public string DisplayName { get; protected set; }
/// <summary>
///
/// </summary>
public bool ShowMenu { get; protected set; }
/// <summary>
///
/// </summary>
public string HomeUrl { get; protected set; }
/// <summary>
/// 获得/设置 前台菜单
/// </summary>
public IEnumerable<Menu> Menus { get; private set; }
/// <summary>
/// 获得/设置 通知内容集合
/// </summary>
2016-11-11 21:05:41 +08:00
public IEnumerable<Notification> Notifications { get; set; }
/// <summary>
/// 获得/设置 通知数量
/// </summary>
public int NotifiCount { get; set; }
}
2016-10-20 17:55:29 +08:00
}