using HH.WMS.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.DAL
{
///
/// 创建业务逻辑层类
///
public static class DALCreator
{
///
/// 创建业务实例
///
/// 业务层类型
/// 业务实例
public static T Create()
where T : BaseDAL, new()
{
return ObjectCreator.Create();
}
public static T CreateErp()
where T : ErpBaseDAL, new()
{
return ObjectCreator.Create();
}
}
}