NewGaoKaoApi/New_College.Services/D_PlanMajorDescServices.cs

18 lines
502 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_PlanMajorDescServices : BaseServices<D_PlanMajorDesc>, ID_PlanMajorDescServices
{
private readonly IBaseRepository<D_PlanMajorDesc> _dal;
public D_PlanMajorDescServices(IBaseRepository<D_PlanMajorDesc> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}