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_StaffPostLogBLL
{
IOA_StaffPostLogDAL iOA_StaffPostLogDAL = null;
public OA_StaffPostLogBLL()
{
iOA_StaffPostLogDAL = Factory.GetDALByInterfaceName(DALInterface.IOA_StaffPostLogDAL) as IOA_StaffPostLogDAL;
}
///
/// 添加
///
///
///
public bool InsertModel(Model.OA_StaffPostLog model)
{
return iOA_StaffPostLogDAL.InserModel(model);
}
///
/// 更新
///
///
///
public bool UpdateModel(Model.OA_StaffPostLog model)
{
return iOA_StaffPostLogDAL.UpdateModel(model);
}
///
/// 删除
///
///
///
public bool DeleteModel(Model.OA_StaffPostLog model)
{
return iOA_StaffPostLogDAL.DeleteModel(model);
}
///
/// 根据编号获得信息
///
/// 编号
///
public OA_StaffPostLog GetModelByKeyid(int? Keyid)
{
return iOA_StaffPostLogDAL.GetModelByKeyid(Keyid);
}
///
/// 分页查询
///
///
///
public IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _FirmId,Guid _MemberId,decimal? _Resume_id,int? _Recruitments_id,int? _PL_Status,DateTime? _BeginPL_CreatTime,DateTime? _EndPL_CreatTime,int? _PL_LookStatus,DateTime? _BeginPL_LookTime,DateTime? _EndPL_LookTime,int? _PL_ReplyStatus,DateTime? _BeginPL_ReplyTime,DateTime? _EndPL_ReplyTime,string _PL_ReplyContent,int? _PL_InviteStatus,DateTime? _BeginPL_InviteCreatTime,DateTime? _EndPL_InviteCreatTime,string _PL_InviteTime,string _PL_InvitePlace,string _PL_InvitePeople,string _PL_InvitePhone,string _PL_InviteRemark,string _PL_InviteCar,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator,string _Remark)
{
return iOA_StaffPostLogDAL.SelectModelPage(pagination, _FirmId, _MemberId, _Resume_id, _Recruitments_id, _PL_Status,_BeginPL_CreatTime,_EndPL_CreatTime, _PL_LookStatus,_BeginPL_LookTime,_EndPL_LookTime, _PL_ReplyStatus,_BeginPL_ReplyTime,_EndPL_ReplyTime, _PL_ReplyContent, _PL_InviteStatus,_BeginPL_InviteCreatTime,_EndPL_InviteCreatTime, _PL_InviteTime, _PL_InvitePlace, _PL_InvitePeople, _PL_InvitePhone, _PL_InviteRemark, _PL_InviteCar,_BeginLastUpdateTime,_EndLastUpdateTime, _Operator, _Remark);
}
///
/// 分页查询(二合一{简历管理:求职管理})
///
///
///
public IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _FirmId, Guid _MemberId, decimal? _Resume_id, int? _Recruitments_id, int? _PL_Status, int? _PostId, string _R_G_Sex, string _R_G_Degree, string _R_G_WorkYear)
{
return iOA_StaffPostLogDAL.SelectModelPage(pagination, _FirmId, _MemberId, _Resume_id, _Recruitments_id, _PL_Status, _PostId, _R_G_Sex, _R_G_Degree, _R_G_WorkYear);
}
}
}