using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.BLL
{
public class Rotation
{
DAL.Rotation dal = new DAL.Rotation();
///
/// 增加一条图片
///
///
///
public int Add(Model.Rotation model)
{
return dal.Add(model);
}
///
/// 查询图片信息
///
///
public DataSet GetList()
{
return dal.GetList();
}
///
/// 禁用图片信息
///
///
///
public bool delrotation(string id)
{
return dal.delrotation(id);
}
///
/// 启用图片信息
///
///
///
public bool poenRotion(string id)
{
return dal.poenRotion(id);
}
}
}