温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:MyShop网络商城源码(mvc开发)
当前文件路径:MyShop/BLL/GuestBook.cs

1using System; 2
using System.Collections.Generic; 3
4
using System.Data; 5
6
7
using MyShop.DALFactory; 8
using MyShop.IDAL; 9
using MyShop.Model; 10
11
namespace MyShop.BLL 12
{ 13
public class GuestBook 14
{ 15
private IGuestBook dal = DataAccess.CreateGuestBook(); 16
17
public GuestBook() { } 18
19
IGuestBook 83
84
common 141
142
143
144
/// <summary> 145
/// 得到通过审核的列表 146
/// </summary> 147
/// <returns></returns> 148
public DataSet GetPassedList() 149
{ 150
return dal.GetPassedList(); 151
} 152
153
154
后台管理 231
} 232
} 233





}
}