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

29 lines
773 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);
}
}
}