33 lines
958 B
C#
33 lines
958 B
C#
using System;
|
|
using AIMSDAL;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AIMSBLL
|
|
{
|
|
public partial class BApplyAnaesthesiaMethod
|
|
{
|
|
public static void Add(ApplyAnaesthesiaMethod ApplyAnaesthesiaMethodObj)
|
|
{
|
|
DApplyAnaesthesiaMethod.Add(ApplyAnaesthesiaMethodObj);
|
|
}
|
|
|
|
public static void Delete(int OperationApplyId)
|
|
{
|
|
DApplyAnaesthesiaMethod.Delete(OperationApplyId);
|
|
}
|
|
public static List<int> GetApplyAnaesthesiaMethodList(int OperationApplyId)
|
|
{
|
|
return DApplyAnaesthesiaMethod.GetApplyAnaesthesiaMethodList(OperationApplyId);
|
|
}
|
|
public static string GetApplyAnaesthesiaMethod(int OperationApplyId)
|
|
{
|
|
return DApplyAnaesthesiaMethod.GetApplyAnaesthesiaMethod(OperationApplyId);
|
|
}
|
|
}
|
|
}
|