📄 meetinginfomanager.cs
字号:
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-9-18 17:04:47
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
using Office.DAL;
using Office.Model;
namespace Office.BLL
{
public static partial class MeetingInfoManager
{
public static MeetingInfo AddMeetingInfo(MeetingInfo meetingInfo)
{
return MeetingInfoService.AddMeetingInfo(meetingInfo);
}
public static void DeleteMeetingInfo(MeetingInfo meetingInfo)
{
MeetingInfoService.DeleteMeetingInfo(meetingInfo);
}
public static void DeleteMeetingInfoById(int meetingId)
{
MeetingInfoService.DeleteMeetingInfoByMeetingId(meetingId);
}
public static void ModifyMeetingInfo(MeetingInfo meetingInfo)
{
MeetingInfoService.ModifyMeetingInfo(meetingInfo);
}
public static IList<MeetingInfo> GetAllMeetingInfos()
{
try
{
return MeetingInfoService.GetAllMeetingInfos();
}catch(Exception ex)
{
throw ex;
}
}
public static MeetingInfo GetMeetingInfoByMeetingId(int meetingId)
{
return MeetingInfoService.GetMeetingInfoByMeetingId(meetingId);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -