第三次課,先從邏輯概念設計,業務層的操做方法,即CRUD通用方法的定義,而後逐步去完善功能。ide
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(); } } }