37 lines
932 B
C#
37 lines
932 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 notice_factor_maintainBll
|
|
{
|
|
notice_factor_maintainDal dal = new notice_factor_maintainDal();
|
|
|
|
public List<notice_factor_maintainModel> GetAllList(string id, string jobsid, string harmfulid,String examId)
|
|
{
|
|
return dal.GetAllList(id, jobsid, harmfulid, examId);
|
|
}
|
|
|
|
public List<notice_factor_maintainModel> GetAllList(string jobsid, string harmfulid, String examId)
|
|
{
|
|
|
|
return dal.GetAllListByHarmfulid(jobsid, harmfulid, examId);
|
|
}
|
|
|
|
public object save(notice_factor_maintainModel model)
|
|
{
|
|
return dal.save(model);
|
|
}
|
|
|
|
public object delete(string id)
|
|
{
|
|
return dal.delete(id);
|
|
}
|
|
}
|
|
}
|