You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.0 KiB
44 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMAPP.Entity.Sys;
|
|
using QMAPP.DAL.Sys;
|
|
|
|
namespace QMAPP.BLL.Sys
|
|
{
|
|
/// <summary>
|
|
/// 桌面快捷方式逻辑层对象
|
|
/// 创建者:李炳海
|
|
/// 创建日期:2015.2.26
|
|
/// </summary>
|
|
public class PersnalSetBLL:BaseBLL
|
|
{
|
|
#region 获取个性设置信息
|
|
|
|
/// <summary>
|
|
/// 获取个性设置信息
|
|
/// </summary>
|
|
/// <returns>个性设置信息</returns>
|
|
public PersnalSet Get()
|
|
{
|
|
return new PersnalSetDAL().Get(this.LoginUser.UserID);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 保存个性设置信息
|
|
|
|
/// <summary>
|
|
/// 保存个性设置信息
|
|
/// </summary>
|
|
/// <param name="info">个性设置信息</param>
|
|
public void Save(PersnalSet info)
|
|
{
|
|
info.USERID = this.LoginUser.UserID;
|
|
new PersnalSetDAL().Save(info);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|
|
|