37 lines
913 B
C#
37 lines
913 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
namespace AIMS.PublicUI.BLL
|
|
{
|
|
public class NoticeTemplate
|
|
{
|
|
public static DataTable GetOperationList()
|
|
{
|
|
return new DAL.NoticeDB().GetOperationList();
|
|
}
|
|
public static DataTable GetOperation()
|
|
{
|
|
return new DAL.NoticeDB().GetOperation();
|
|
}
|
|
public static void Add(Model.Notice NoticeObj)
|
|
{
|
|
new DAL.NoticeDB().Add(NoticeObj);
|
|
}
|
|
public static void Delete(int Id)
|
|
{
|
|
new DAL.NoticeDB().Delete(Id);
|
|
}
|
|
public static void sendout(Model.Notice NoticeObj)
|
|
{
|
|
new DAL.NoticeDB().sendout(NoticeObj);
|
|
}
|
|
|
|
public static List<Model.Notice> HistoryNoticeData()
|
|
{
|
|
return new DAL.NoticeDB().HistoryNoticeData();
|
|
}
|
|
}
|
|
}
|