NewGaoKaoApi/New_College.Repository/BASE/SubjectSelectionRepository.cs

17 lines
468 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>
/// SubjectSelectionRepository
/// </summary>
public class SubjectSelectionRepository : BaseRepository<SubjectSelection>, ISubjectSelectionRepository
{
public SubjectSelectionRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
{
}
}
}