资源简介
本程序一个基于三层架构的MVC模式应用的完整示例项目源码,基于Asp.net 3.5开发,
结构更简洁,提供更多有效的示例源码参考。
方便用户更好的理解和使用该架构进行开发,配合动软.Net代码生成器,可以使开发效率事半功倍,倍感轻松。
该项目涉及如下几项要点应用:
1) 基于标准的三层结构。
2) 表示层采用MVC模式。
3) 数据的增、删、改、查操作。
4) 列表数据显示及分页处理。
5) Linq的应用等。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
namespace Maticsoft.BLL
{
public class Images
{
private static readonly Maticsoft.DAL.Images dal = new Maticsoft.DAL.Images();
#region 成员方法
///
/// 增加一条数据
///
public void Add(Maticsoft.Model.Images model)
{
dal.Add(model);
}
///
/// 更新一条数据
///
public void Update(Maticsoft.Model.Images model)
{
dal.Update(model);
}
///
/// 删除一条数据
///
public void Delete(int ID)
{
dal.Delete(ID);
}
///
/// 得到一个对象实体
///
public Maticsoft.Model.Images GetModel(int ID)
{
return dal.GetModel(ID);
}
///
/// 获得数据列表
///
public DataSet GetList(string strWhere)
{
return dal.GetList(strWhere);
}
///
/// 获得数据列表
///
public DataSet GetAllList()
{
return dal.GetList(““);
}
public DataSet GetList(int ImgClassID)
{
return dal.GetList(“ ImgClassID=“ + ImgClassID);
}
///
/// 获得数据列表
///
public DataSet GetList(int PageSize int PageIndex string strWhere)
{
return dal.GetList(PageSize PageIndex strWhere);
}
#endregion 成员方法
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-09-29 08:07 CodematicDemoMVC\
目录 0 2009-06-07 13:45 CodematicDemoMVC\CodematicDemoMVC\
目录 0 2009-06-07 12:39 CodematicDemoMVC\CodematicDemoMVC\BLL\
目录 0 2009-06-06 15:29 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\
目录 0 2009-06-07 12:39 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\
文件 15360 2007-05-24 22:44 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\COM.Excel.dll
文件 1089536 2007-05-24 22:44 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\Excel.dll
文件 28672 2009-06-06 18:37 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\Maticsoft.BLL.dll
文件 61440 2009-06-06 18:37 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\Maticsoft.Common.dll
文件 53248 2009-06-06 18:37 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\Maticsoft.DAL.dll
文件 49152 2009-06-06 18:37 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\Maticsoft.DBUtility.dll
文件 32768 2009-06-06 18:37 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\Maticsoft.Model.dll
文件 64088 2007-10-10 09:48 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\Microsoft.Vbe.Interop.dll
文件 223800 2007-10-10 09:48 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\office.dll
文件 45056 2008-12-31 12:01 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\OpenSmtp.dll
文件 20480 2007-05-24 22:44 CodematicDemoMVC\CodematicDemoMVC\BLL\bin\Debug\OWC10Chart.dll
文件 7110 2009-06-06 15:32 CodematicDemoMVC\CodematicDemoMVC\BLL\BLL.csproj
文件 2503 2009-05-04 15:10 CodematicDemoMVC\CodematicDemoMVC\BLL\BLL.csproj.user
文件 1765 2006-08-24 22:09 CodematicDemoMVC\CodematicDemoMVC\BLL\Images.cs
文件 1572 2006-08-24 22:09 CodematicDemoMVC\CodematicDemoMVC\BLL\ImgClass.cs
目录 0 2009-06-06 18:09 CodematicDemoMVC\CodematicDemoMVC\BLL\NewsManage\
文件 6993 2009-06-06 18:09 CodematicDemoMVC\CodematicDemoMVC\BLL\NewsManage\News.cs
文件 4446 2009-06-05 23:12 CodematicDemoMVC\CodematicDemoMVC\BLL\NewsManage\NewsClass.cs
文件 1546 2007-05-20 11:12 CodematicDemoMVC\CodematicDemoMVC\BLL\NewsManage\NewsReply.cs
文件 64 2006-06-06 14:15 CodematicDemoMVC\CodematicDemoMVC\BLL\NewsManage\vssver.scc
目录 0 2009-06-06 17:11 CodematicDemoMVC\CodematicDemoMVC\BLL\Products\
文件 4305 2009-06-05 23:12 CodematicDemoMVC\CodematicDemoMVC\BLL\Products\Brand.cs
文件 4550 2009-06-05 23:12 CodematicDemoMVC\CodematicDemoMVC\BLL\Products\Category.cs
文件 7625 2009-06-06 17:11 CodematicDemoMVC\CodematicDemoMVC\BLL\Products\Product.cs
目录 0 2009-06-05 22:36 CodematicDemoMVC\CodematicDemoMVC\BLL\Properties\
文件 610 2009-06-07 13:39 CodematicDemoMVC\CodematicDemoMVC\BLL\Properties\AssemblyInfo.cs
............此处省略258个文件信息
评论
共有 条评论