NewGaoKaoApi/New_College.Services/OccupationMapJobInfoService...

18 lines
532 B
C#

using New_College.IServices;
using New_College.Model.Models;
using New_College.Services.BASE;
using New_College.IRepository.Base;
namespace New_College.Services
{
public class OccupationMapJobInfoServices : BaseServices<OccupationMapJobInfo>, IOccupationMapJobInfoServices
{
private readonly IBaseRepository<OccupationMapJobInfo> _dal;
public OccupationMapJobInfoServices(IBaseRepository<OccupationMapJobInfo> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}