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

37 lines
912 B
C#

using dccdc.DAL;
using dccdc.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace dccdc.BLL
{
public class summaryreport_factor_symptomBll
{
summaryreport_factor_symptomDal dal = new summaryreport_factor_symptomDal();
public List<summaryreport_factor_symptomModel> GetAllList(string id, string jobsid, string harmfulid)
{
return dal.GetAllList(id, jobsid, harmfulid);
}
public List<summaryreport_factor_symptomModel> GetAllList(string jobsid, string harmfulid)
{
return dal.GetAllList(jobsid, harmfulid);
}
public object save(summaryreport_factor_symptomModel model)
{
return dal.save(model);
}
public object delete(string id)
{
return dal.delete(id);
}
}
}