C#三层架构第三课

第三次课,先从逻辑概念设计,业务层的操作方法,即CRUD通用方法的定义,然后逐步去完善功能。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//BLL也需要添加对Model的引用;
using Model;
// 添加引用
using System.Data;
//需要添加对DAL 层的引用;
using DAL;

namespace BLL
{
    //相当于服务员:
    public class DeptService
    {
        //1.增加后厨对象;
        DeptDao deptDao = new DeptDao();

        //CRUD:增加  U:修改  D:删除;R:检索
        public bool addDept(Dept dept) {
            return deptDao.addDept(dept);
        }
        public bool updateDept(Dept dept) {
            return deptDao.updateDept(dept);
        }
        public bool delDept(Dept dept) {
            return deptDao.delDept(dept);
        }
        public DataTable findDeptByName(String deptName) {
            return deptDao.findDeptByName(deptName);
        }
        public DataTable refreshData() {
            return deptDao.refreshData();
        }
    }
}

C#三层架构第三课

上一篇:改进C# WinForm窗体及其控件的自适应(转)


下一篇:C# GDAL编码问题3——读取中文图层