31 lines
712 B
C#
31 lines
712 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 project_factor_maintainBll
|
|||
|
|
{
|
|||
|
|
project_factor_maintainDal dal = new project_factor_maintainDal();
|
|||
|
|
|
|||
|
|
public List<project_factor_maintainModel> GetAllList(string id, string jobsid, string harmfulid)
|
|||
|
|
{
|
|||
|
|
return dal.GetAllList(id, jobsid, harmfulid);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object save(project_factor_maintainModel model)
|
|||
|
|
{
|
|||
|
|
return dal.save(model);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object delete(string id)
|
|||
|
|
{
|
|||
|
|
return dal.delete(id);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|