NewGaoKaoApi/New_College.Services/D_OccupationServices.cs

18 lines
484 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 D_OccupationServices : BaseServices<D_Occupation>, ID_OccupationServices
{
private readonly IBaseRepository<D_Occupation> _dal;
public D_OccupationServices(IBaseRepository<D_Occupation> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}