using System; using AIMSDAL; using AIMSModel; using AIMSObjectQuery; using System.Collections; using System.Collections.Generic; namespace AIMSBLL { public partial class BApplyOperationInfo { public static void Add(ApplyOperationInfo ApplyOperationInfoObj) { DApplyOperationInfo.Add(ApplyOperationInfoObj); } public static void Delete(int OperationApplyId) { DApplyOperationInfo.Delete(OperationApplyId); } public static List GetApplyOperationIdList(int OperationApplyId) { return DApplyOperationInfo.GetApplyOperationIdList(OperationApplyId); } } }