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 GetApplyAnaesthesiaMethodList(int OperationApplyId) { return DApplyAnaesthesiaMethod.GetApplyAnaesthesiaMethodList(OperationApplyId); } public static string GetApplyAnaesthesiaMethod(int OperationApplyId) { return DApplyAnaesthesiaMethod.GetApplyAnaesthesiaMethod(OperationApplyId); } } }