using Learun.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Learun.Application.AppMagager
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创 建:超级管理员
/// 日 期:2018-06-26 10:32
/// 描 述:我的常用移动应用
///
public class MyFunctionBLL: MyFunctionIBLL
{
private MyFunctionService myFunctionService = new MyFunctionService();
#region 获取数据
///
/// 获取列表数据
///
/// 用户主键ID
///
public IEnumerable GetList(string userId)
{
try
{
return myFunctionService.GetList(userId);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowBusinessException(ex);
}
}
}
#endregion
#region 提交数据
///
/// 保存实体数据(新增、修改)
/// 主键
///
///
public void SaveEntity(string userId, string strFunctionId)
{
try
{
myFunctionService.SaveEntity(userId, strFunctionId);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}
#endregion
}
}