26 lines
561 B
C#
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);
|
|
}
|
|
}
|
|
}
|