26 lines
694 B
C#
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);
|
|
}
|
|
}
|
|
}
|