using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using CY.IDAL;
|
using CY.Model;
|
using AbstractFactory;
|
using CY.IBaseDAL;
|
using CY.Infrastructure.DESEncrypt;
|
using CY.Infrastructure.Query;
|
namespace CY.BLL.OA
|
{
|
public class EC_SpecialForumsBLL
|
{
|
IEC_SpecialForumsDAL idal_IEC_SpecialForumsDAL = null;
|
|
public EC_SpecialForumsBLL()
|
{
|
idal_IEC_SpecialForumsDAL = Factory.GetDALByInterfaceName(DALInterface.IEC_SpecialForumsDAL) as IEC_SpecialForumsDAL;
|
}
|
|
/// <summary>
|
/// 添加
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool InsertModel(Model.EC_SpecialForums model)
|
{
|
return idal_IEC_SpecialForumsDAL.InserModel(model);
|
}
|
|
/// <summary>
|
/// 更新
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool UpdateModel(Model.EC_SpecialForums model)
|
{
|
|
return idal_IEC_SpecialForumsDAL.UpdateModel(model);
|
}
|
|
/// <summary>
|
/// 删除
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool DeleteModel(Model.EC_SpecialForums model)
|
{
|
|
return idal_IEC_SpecialForumsDAL.DeleteModel(model);
|
}
|
}
|
}
|