42 lines
936 B
C#
42 lines
936 B
C#
using System;
|
|
using AIMSDAL;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Reflection;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AIMSBLL
|
|
{
|
|
public partial class BNotice
|
|
{
|
|
public static DataTable GetOperationList()
|
|
{
|
|
return DNotice.GetOperationList();
|
|
}
|
|
public static DataTable GetOperation()
|
|
{
|
|
return DNotice.GetOperation();
|
|
}
|
|
public static void Add(Notice NoticeObj)
|
|
{
|
|
DNotice.Add(NoticeObj);
|
|
}
|
|
public static void Delete(int Id)
|
|
{
|
|
DNotice.Delete(Id);
|
|
}
|
|
public static void sendout(Notice NoticeObj)
|
|
{
|
|
DNotice.sendout(NoticeObj);
|
|
}
|
|
|
|
public static List<Notice> HistoryNoticeData()
|
|
{
|
|
return DNotice.HistoryNoticeData();
|
|
}
|
|
}
|
|
}
|