NewGaoKaoApi/New_College.Services/D_PlanMajorScoreLineService...

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 D_PlanMajorScoreLineServices : BaseServices<D_PlanMajorScoreLine>, ID_PlanMajorScoreLineServices
{
private readonly IBaseRepository<D_PlanMajorScoreLine> _dal;
public D_PlanMajorScoreLineServices(IBaseRepository<D_PlanMajorScoreLine> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}