38 lines
942 B
C#
38 lines
942 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 BOperationRoom
|
|
{
|
|
public static void Add(OperationRoom OperationRoomObj)
|
|
{
|
|
DOperationRoom.Add(OperationRoomObj);
|
|
}
|
|
|
|
|
|
public static OperationRoom GetModel(int Id)
|
|
{
|
|
return DOperationRoom.GetModel(Id);
|
|
}
|
|
|
|
public static DataTable GetDataTable(string strWhere)
|
|
{
|
|
return DOperationRoom.GetDataTable(strWhere);
|
|
}
|
|
public static List<OperationRoom> GetOperationRooms(string strWhere)
|
|
{
|
|
return DOperationRoom.GetOperationRooms(strWhere);
|
|
}
|
|
public static int GetOperationRoomIdByName(string Name)
|
|
{
|
|
return DOperationRoom.GetOperationRoomIdByName(Name);
|
|
}
|
|
}
|
|
}
|