NewGaoKaoApi/New_College.Services/D_QualificationLineServices.cs

18 lines
526 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_QualificationLineServices : BaseServices<D_QualificationLine>, ID_QualificationLineServices
{
private readonly IBaseRepository<D_QualificationLine> _dal;
public D_QualificationLineServices(IBaseRepository<D_QualificationLine> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}