NewGaoKaoApi/New_College.Repository/BASE/ID_OccupationRepository.cs

12 lines
259 B
C#

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