38 lines
929 B
C#
38 lines
929 B
C#
using System;
|
|
using AIMSDAL;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
|
|
namespace AIMSBLL
|
|
{
|
|
public partial class BOperationBodyPosition
|
|
{
|
|
public static bool IsExit(string Name)
|
|
{
|
|
return DOperationBodyPosition.IsExit(Name);
|
|
}
|
|
public static void Add(OperationBodyPosition OperationBodyPosition)
|
|
{
|
|
DOperationBodyPosition.Add(OperationBodyPosition);
|
|
|
|
}
|
|
|
|
public static OperationBodyPosition GetModel(int Id)
|
|
{
|
|
return DOperationBodyPosition.GetModel(Id);
|
|
}
|
|
|
|
public static DataTable GetDataTable(string strWhere)
|
|
{
|
|
return DOperationBodyPosition.GetDataTable(strWhere);
|
|
}
|
|
public static DataTable GetDataTable()
|
|
{
|
|
return DOperationBodyPosition.GetDataTable();
|
|
}
|
|
}
|
|
}
|