26 lines
670 B
C#
26 lines
670 B
C#
using System;
|
|
using AIMSDAL;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
namespace AIMSBLL
|
|
{
|
|
public partial class BApplyDiagnoseInfo
|
|
{
|
|
public static void Add(ApplyDiagnoseInfo ApplyDiagnoseInfoObj)
|
|
{
|
|
DApplyDiagnoseInfo.Add(ApplyDiagnoseInfoObj);
|
|
}
|
|
|
|
public static void Delete(int OperationApplyId)
|
|
{
|
|
DApplyDiagnoseInfo.Delete(OperationApplyId);
|
|
}
|
|
public static List<int> GetApplyDiagnoseIdList(int OperationApplyId)
|
|
{
|
|
return DApplyDiagnoseInfo.GetApplyDiagnoseIdList(OperationApplyId);
|
|
}
|
|
}
|
|
}
|