/////////////////////////////////////////////////////////////////////////////
// File Description : 创建业务逻辑层类
/////////////////////////////////////////////////////////////////////////////
using HH.AMS.Utils;
using System;
using System.Collections.Generic;
using System.Text;
namespace HH.AMS.BLL
{
///
/// 创建业务逻辑层类
///
public static class BLLCreator
{
///
/// 创建业务实例
///
/// 业务层类型
/// 业务实例
public static T Create()
where T : BaseBLL, new()
{
return ObjectCreator.Create();
}
}
}