30 lines
679 B
C#
30 lines
679 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 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);
|
|
}
|
|
}
|
|
}
|