namespace Tiobon.Core.Services;
///
/// 录用审批单 (服务)
///
public class Ghrh_OfferApplyOrderServices : BaseServices, IGhrh_OfferApplyOrderServices
{
private readonly IBaseRepository _dal;
public Ghrh_OfferApplyOrderServices(ICaching caching, IBaseRepository dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}