StableVersion4.3/HL_FristAidPlatform_Bussiness/Base/T_Base_MPDSBLL.cs

24 lines
576 B
C#

using HL_FristAidPlatform_DataBase;
using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_IDataBase;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_Bussiness
{
public class T_Base_MPDSBLL
{
IT_Base_MPDS _MPDS = new T_Base_MPDSDB();
/// <summary>
/// 根据类型获取MPDS针状集合
/// </summary>
/// <param name="type"></param>
/// <returns></returns>
public TableModel<T_Base_MPDS> GetListOfType(int type)
{
return _MPDS.GetListOfType(type);
}
}
}