AIMS/AIMSEntity/BLL/Extension/BAnaesthesiaMethod.cs
2022-09-26 17:39:34 +08:00

26 lines
561 B
C#

using System;
using AIMSDAL;
using AIMSModel;
using AIMSObjectQuery;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Reflection;
using System.Windows.Forms;
namespace AIMSBLL
{
public partial class BAnaesthesiaMethod
{
public static AnaesthesiaMethod GetModel(int Id)
{
return DAnaesthesiaMethod.GetModel(Id);
}
public static DataTable GetDataTable(string strWhere)
{
return DAnaesthesiaMethod .GetDataTable(strWhere);
}
}
}