NewGaoKaoApi/New_College.IServices/ISubjectSelectionServices.cs

16 lines
262 B
C#

using New_College.IServices.BASE;
using New_College.Model.Models;
namespace New_College.IServices
{
/// <summary>
/// ISubjectSelectionServices
/// </summary>
public interface ISubjectSelectionServices :IBaseServices<SubjectSelection>
{
}
}