41 lines
997 B
C#
41 lines
997 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 SymptomsMaintainBll
|
|
{
|
|
public SymptomsMaintainDal dal = new SymptomsMaintainDal();
|
|
public List<SymptomsMaintainModel> GetAllListN(string id, string status)
|
|
{
|
|
return dal.GetAllListN(id,status);
|
|
}
|
|
|
|
public bool Add(SymptomsMaintainModel model)
|
|
{
|
|
return dal.Add(model);
|
|
}
|
|
|
|
public bool Update(SymptomsMaintainModel model)
|
|
{
|
|
return dal.Update(model);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 根据id删除体检症状
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
/// <exception cref="NotImplementedException"></exception>
|
|
public object delSymptomsMaintain(string id)
|
|
{
|
|
return dal.del(id);
|
|
}
|
|
}
|
|
}
|