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