45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using dccdc.DAL;
|
|||
|
|
using dccdc.Models;
|
|||
|
|
|
|||
|
|
namespace dccdc.BLL
|
|||
|
|
{
|
|||
|
|
public class ExamPreposeConditionMaintainBll
|
|||
|
|
{
|
|||
|
|
private ExamPreposeConditionMaintainDal _dal = new ExamPreposeConditionMaintainDal();
|
|||
|
|
public List<ExamPreposeConditionMaintainModel> GetAllList(string id)
|
|||
|
|
{
|
|||
|
|
return _dal.GetAllList(id);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public bool Add(ExamPreposeConditionMaintainModel model)
|
|||
|
|
{
|
|||
|
|
return _dal.Add(model);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public List<ExamPreposeConditionMaintainModel> GetAllList()
|
|||
|
|
{
|
|||
|
|
return _dal.GetAllList();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public bool Update(ExamPreposeConditionMaintainModel model)
|
|||
|
|
{
|
|||
|
|
return _dal.Update(model);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据id删除体检项目前置关系
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="id"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
public object delTjqz(string id)
|
|||
|
|
{
|
|||
|
|
return _dal.del(id);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|