32 lines
708 B
C#
32 lines
708 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 target_factor_maintainBll
|
|
{
|
|
target_factor_maintainDal dal = new target_factor_maintainDal();
|
|
|
|
public List<target_factor_maintainModel> GetAllList(string id, string jobsid, string harmfulid)
|
|
{
|
|
return dal.GetAllList(id, jobsid, harmfulid);
|
|
}
|
|
|
|
public object save(target_factor_maintainModel model)
|
|
{
|
|
return dal.save(model);
|
|
}
|
|
|
|
public object delete(string id)
|
|
{
|
|
return dal.delete(id);
|
|
}
|
|
|
|
}
|
|
}
|