tijian_tieying/web/dccdc.BLL/InfectionMenuBll.cs

42 lines
921 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
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<InfectionMenuModel> getMenuInfection()
{
return new DAL.InfectionMenuDal().getMenuInfection();
}
public List<InfectionMenuModel> 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);
}
}
}