江南才子 发表于 2021-7-27 10:02:38

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();
      }
    }
}


文档来源:51CTO技术博客https://blog.51cto.com/u_2096101/3185712
页: [1]
查看完整版本: C#三层架构之第三次课 业务逻辑层