📄 mynotemanager.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:05:12
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
using Office.DAL;
using Office.Model;
namespace Office.BLL
{
public static partial class MyNoteManager
{
public static MyNote AddMyNote(MyNote myNote)
{
try
{
return MyNoteService.AddMyNote(myNote);
}catch(Exception ex)
{
throw ex;
}
}
public static void DeleteMyNote(MyNote myNote)
{
try
{
MyNoteService.DeleteMyNote(myNote);
}catch(Exception ex)
{
throw ex;
}
}
public static void DeleteMyNoteById(int noteId)
{
try
{
MyNoteService.DeleteMyNoteByNoteId(noteId);
}catch(Exception ex)
{
throw ex;
}
}
public static void ModifyMyNote(MyNote myNote)
{
try
{
MyNoteService.ModifyMyNote(myNote);
}catch(Exception ex)
{
throw ex;
}
}
public static IList<MyNote> GetAllMyNotes()
{
try
{
return MyNoteService.GetAllMyNotes();
}catch(Exception ex)
{
throw ex;
}
}
public static MyNote GetMyNoteByNoteId(int noteId)
{
try
{
return MyNoteService.GetMyNoteByNoteId(noteId);
}catch(Exception ex)
{
throw ex;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -