36 lines
922 B
C#
36 lines
922 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_importantBll
|
|||
|
|
{
|
|||
|
|
summaryreport_factor_importantDal dal = new summaryreport_factor_importantDal();
|
|||
|
|
|
|||
|
|
public List<summaryreport_factor_importantModel> GetAllList(string id, string jobsid, string harmfulid)
|
|||
|
|
{
|
|||
|
|
return dal.GetAllList(id, jobsid, harmfulid);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public List<summaryreport_factor_importantModel> GetAllList(string jobsid, string harmfulid)
|
|||
|
|
{
|
|||
|
|
return dal.GetAllList(jobsid, harmfulid);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object save(summaryreport_factor_importantModel model)
|
|||
|
|
{
|
|||
|
|
return dal.save(model);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object delete(string id)
|
|||
|
|
{
|
|||
|
|
return dal.delete(id);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|