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