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

26 lines
694 B
C#

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<ApplyOperationInfo> GetApplyOperationIdList(int OperationApplyId)
{
return DApplyOperationInfo.GetApplyOperationIdList(OperationApplyId);
}
}
}