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
{
public class OA_StaffResumeWorkBLL
{
IOA_StaffResumeWorkDAL iOA_StaffResumeWorkDAL = null;
public OA_StaffResumeWorkBLL()
{
iOA_StaffResumeWorkDAL = Factory.GetDALByInterfaceName(DALInterface.IOA_StaffResumeWorkDAL) as IOA_StaffResumeWorkDAL;
}
///
/// 添加
///
///
///
public bool InsertModel(Model.OA_StaffResumeWork model)
{
return iOA_StaffResumeWorkDAL.InserModel(model);
}
///
/// 更新
///
///
///
public bool UpdateModel(Model.OA_StaffResumeWork model)
{
return iOA_StaffResumeWorkDAL.UpdateModel(model);
}
///
/// 删除
///
///
///
public bool DeleteModel(Model.OA_StaffResumeWork model)
{
return iOA_StaffResumeWorkDAL.DeleteModel(model);
}
///
/// 根据编号获得信息
///
/// 编号
///
public OA_StaffResumeWork GetModelByKeyid(int? Keyid)
{
return iOA_StaffResumeWorkDAL.GetModelByKeyid(Keyid);
}
///
/// 分页查询
///
///
///
public IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _Memberid,string _R_W_StudyStartTime,string _R_W_StudyEndTime,string _R_W_CompanyName,string _R_W_Industry,string _R_W_CompanyScale,string _R_W_CompanyNature,string _R_W_Department,string _R_W_Post,string _R_W_WorkDetail,int? _OrderNum,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator)
{
return iOA_StaffResumeWorkDAL.SelectModelPage(pagination, _Memberid, _R_W_StudyStartTime, _R_W_StudyEndTime, _R_W_CompanyName, _R_W_Industry, _R_W_CompanyScale, _R_W_CompanyNature, _R_W_Department, _R_W_Post, _R_W_WorkDetail, _OrderNum,_BeginLastUpdateTime,_EndLastUpdateTime, _Operator);
}
}
}