NewGaoKaoApi/New_College.Repository/BASE/ISubjectSelectionRepository.cs

12 lines
271 B
C#

using New_College.IRepository.Base;
using New_College.Model.Models;
namespace New_College.IRepository
{
/// <summary>
/// ISubjectSelectionRepository
/// </summary>
public interface ISubjectSelectionRepository : IBaseRepository<SubjectSelection>
{
}
}