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_StaffResumeIntentionBLL
|
{
|
IOA_StaffResumeIntentionDAL iOA_StaffResumeIntentionDAL = null;
|
|
public OA_StaffResumeIntentionBLL()
|
{
|
iOA_StaffResumeIntentionDAL = Factory.GetDALByInterfaceName(DALInterface.IOA_StaffResumeIntentionDAL) as IOA_StaffResumeIntentionDAL;
|
}
|
|
/// <summary>
|
/// 添加
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool InsertModel(Model.OA_StaffResumeIntention model)
|
{
|
return iOA_StaffResumeIntentionDAL.InserModel(model);
|
}
|
|
/// <summary>
|
/// 更新
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool UpdateModel(Model.OA_StaffResumeIntention model)
|
{
|
|
return iOA_StaffResumeIntentionDAL.UpdateModel(model);
|
}
|
|
/// <summary>
|
/// 删除
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool DeleteModel(Model.OA_StaffResumeIntention model)
|
{
|
|
return iOA_StaffResumeIntentionDAL.DeleteModel(model);
|
}
|
|
/// <summary>
|
/// 根据编号获得信息
|
/// </summary>
|
/// <param name="Keyid">编号</param>
|
/// <returns></returns>
|
public OA_StaffResumeIntention GetModelByKeyid(int? Keyid)
|
{
|
return iOA_StaffResumeIntentionDAL.GetModelByKeyid(Keyid);
|
}
|
|
/// <summary>
|
/// 分页查询
|
/// </summary>
|
/// <param name="pagination"></param>
|
/// <returns></returns>
|
public IEnumerable<Model.OA_StaffResumeIntention> SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _Memberid,string _R_I_WorkProvence,string _R_I_WorkCity,string _R_I_Industry,int? _R_I_Consultants_id,int? _R_I_Postid,string _R_I_PostName,string _R_I_HopeMoney,string _R_I_WorkTime,string _R_I_YouDetail,int? _OrderNum,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator)
|
{
|
return iOA_StaffResumeIntentionDAL.SelectModelPage(pagination, _Memberid, _R_I_WorkProvence, _R_I_WorkCity, _R_I_Industry, _R_I_Consultants_id, _R_I_Postid, _R_I_PostName, _R_I_HopeMoney, _R_I_WorkTime, _R_I_YouDetail, _OrderNum,_BeginLastUpdateTime,_EndLastUpdateTime, _Operator);
|
}
|
}
|
}
|