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