tijian_tieying/web/dccdc.BLL/InfectionMenuBll.cs
2025-02-20 12:14:39 +08:00

42 lines
921 B
C#

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