using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using dccdc.Models;
using System.Data;
namespace dccdc.BLL
{
public class ThresholdDeviationMaintainBll
{
public int getCount(string key)
{
//throw new NotImplementedException();
return new DAL.ThresholdDeviationMaintainDal().getCount(key);
}
///
/// 根据听阈偏差项目获取听阈偏差列表
///
///
///
///
///
public List getList(int page, int pagesize, string key)
{
return new DAL.ThresholdDeviationMaintainDal().getList(page, pagesize, key);
}
public object save(ThresholdDeviationMaintainModel sbm, ERPUser user)
{
return new DAL.ThresholdDeviationMaintainDal().save(sbm, user);
}
public List GetAllList(string id, string stauts)
{
return new DAL.ThresholdDeviationMaintainDal().GetAllList(id, stauts);
}
public List GetAllTreeList()
{
return new DAL.ThresholdDeviationMaintainDal().GetAllTreeList();
}
///
/// 根据id删除听阈偏差
///
///
///
public object delThresholdDeviationMaintain(string id)
{
return new DAL.ThresholdDeviationMaintainDal().del(id);
}
}
}