AIMS/AIMSEntity/BLL/Extension/BApplyAnaesthesiaMethod.cs
leomon 82591fb825 器械清点生命体征不显示
数千访视添加了Ada分级,术中麻醉记录单应该同步过来
4间9:54血压显示的不对
点击获取数据的时候才会把有创血压加载出来 不自动画点血压
2022-11-09 20:32:37 +08:00

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);
}
}
}