NewGaoKaoApi/New_College.Repository/BASE/D_QualificationLineReposito...

21 lines
487 B
C#

using New_College.IRepository;
using New_College.IRepository.UnitOfWork;
using New_College.Model.Models;
using New_College.Repository.Base;
namespace New_College.Repository
{
/// <summary>
/// D_QualificationLineRepository
/// </summary>
public class D_QualificationLineRepository : BaseRepository<D_QualificationLine>, ID_QualificationLineRepository
{
public D_QualificationLineRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
{
}
}
}