38 lines
879 B
C#
38 lines
879 B
C#
using System;
|
|
using AIMSDAL;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
using System.Data;
|
|
|
|
namespace AIMSBLL
|
|
{
|
|
public partial class BOperationLevel
|
|
{
|
|
public static void Add(OperationLevel OperationLevelObj)
|
|
{
|
|
try
|
|
{
|
|
DOperationLevel.Add(OperationLevelObj);
|
|
MessageBox.Show("增加成功!");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show("增加成功!"+ex.Message);
|
|
}
|
|
}
|
|
|
|
public static OperationLevel GetModel(int Id)
|
|
{
|
|
return DOperationLevel.GetModel(Id);
|
|
}
|
|
|
|
public static DataTable GetDataTable(string strWhere)
|
|
{
|
|
return DOperationLevel.GetDataTable(strWhere);
|
|
}
|
|
}
|
|
}
|