using dccdc.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace dccdc.BLL { public class InfectionMenuBll { //艾滋 public List getMenuInfection() { return new DAL.InfectionMenuDal().getMenuInfection(); } public List getSJCDInfection() { return new DAL.InfectionMenuDal().getSJCDInfection(); } public object delCdInfection(int id) { //throw new NotImplementedException(); return new DAL.InfectionMenuDal().delCDInfection(id); } public object saveCDInfection(InfectionMenuModel m) { //throw new NotImplementedException(); return new DAL.InfectionMenuDal().saveCDInfection(m); } } }