CarUse.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:3k
- //------------------------------------------------------------------------------
- // 创建标识: Copyright (C) 2009 Socansoft.com 版权所有
- // 创建描述: SocanCode代码生成器 V4.3.3.5 自动创建于 2009-12-25 15:18:14
- //
- // 功能描述:
- //
- // 修改标识:
- // 修改描述:
- //------------------------------------------------------------------------------
- using System;
- using System.Data;
- using System.Collections.Generic;
- using System.Text;
- using System.Web;
- using System.Web.Caching;
- using System.Text.RegularExpressions;
- namespace BLL
- {
- /// <summary>
- /// 业务逻辑类 CarUse
- /// </summary>
- public class CarUse
- {
- private readonly SqlServerDAL.CarUse dal = new SqlServerDAL.CarUse();
- public CarUse()
- { }
- /// <summary>
- /// 增加一条数据
- /// </summary>
- public void Add(Model.CarUse model)
- {
- CheckModel(model);
- dal.Add(model);
- }
- /// <summary>
- /// 更新一条数据
- /// </summary>
- public void Update(Model.CarUse model)
- {
- CheckModel(model);
- dal.Update(model);
- }
- /// <summary>
- /// 删除一条数据
- /// </summary>
- public void Delete(int ID)
- {
- CheckConditionArgument(ID);
- dal.Delete(ID);
- }
- /// <summary>
- /// 是否存在该记录
- /// </summary>
- public bool Exists(int ID)
- {
- CheckConditionArgument(ID);
- return dal.Exists(ID);
- }
- /// <summary>
- /// 得到一个对象实体
- /// </summary>
- public Model.CarUse GetModel(int ID)
- {
- CheckConditionArgument(ID);
- return dal.GetModel(ID);
- }
- /// <summary>
- /// 获得泛型数据列表
- /// </summary>
- public List<Model.CarUse> GetList()
- {
- return dal.GetList();
- }
- /// <summary>
- /// 取得数据行数,不建议直接使用此方法,请根据业务逻辑重写
- /// </summary>
- public int GetCount(string condition)
- {
- return dal.GetCount(condition);
- }
- /// <summary>
- /// 分页获取泛型数据列表,不建议直接使用此方法,请根据业务逻辑重写
- /// </summary>
- public List<Model.CarUse> GetPageList(int pageSize, int pageIndex, string fldSort, bool fldDir, string condition)
- {
- if (pageSize <= 0)
- throw new Exception("每页数据条数必须大于0。");
- if (pageIndex <= 0)
- throw new Exception("页索引必须大于0。");
- if (string.IsNullOrEmpty(fldSort))
- throw new Exception("排序字段不能为空。如果是默认排序,可以填写主键字段。");
- return dal.GetPageList(pageSize, pageIndex, fldSort, fldDir, condition);
- }
- #region 验证参数的有效性,请在此加入更多业务逻辑的验证
- /// <summary>
- /// 验证实体的有效性
- /// </summary>
- private void CheckModel(Model.CarUse model)
- {
- if (model == null)
- throw new ArgumentNullException("参数不能为空。");
- }
- /// <summary>
- /// 验证条件参数的有效性
- /// </summary>
- private void CheckConditionArgument(int ID)
- { }
- #endregion
- }
- }