NewGaoKaoApi/New_College.Repository/BASE/ID_MajorSalaryRepository.cs

12 lines
262 B
C#

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