36 lines
986 B
C#
36 lines
986 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
namespace DataDictionary.BLL
|
|
{
|
|
public class OperationRecoverRoom
|
|
{
|
|
public static void Add(Model.OperationRecoverRoom OperationRecoverRoomObj)
|
|
{
|
|
new DAL.OperationRecoverRoomDB().Add(OperationRecoverRoomObj);
|
|
}
|
|
|
|
public static void Update(Model.OperationRecoverRoom OperationRecoverRoomObj)
|
|
{
|
|
new DAL.OperationRecoverRoomDB().Update(OperationRecoverRoomObj);
|
|
}
|
|
|
|
public static void Delete(int Id)
|
|
{
|
|
new DAL.OperationRecoverRoomDB().Delete(Id);
|
|
}
|
|
|
|
public static Model.OperationRecoverRoom GetModel(int Id)
|
|
{
|
|
return new DAL.OperationRecoverRoomDB().GetModel(Id);
|
|
}
|
|
|
|
public static DataTable GetDataTable(string strWhere)
|
|
{
|
|
return new DAL.OperationRecoverRoomDB().GetDataTable(strWhere);
|
|
}
|
|
}
|
|
}
|