📄 interface.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using Model;
namespace IDAL
{
public interface Iguestbook //留言本接口
{
//得到所有留言
guestbook[] getListGuestBook();
//得到一条留言
guestbook[] getOnly(string id);
//添加留言内容
void setGuestBook(guestbook gb);
//回复留言
void setReGuestBook(guestbook Regb);
//删除留言
bool delGuestBook(string id);
}
public interface Iblog
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -