17 lines
493 B
C#
17 lines
493 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>
|
|
/// T_EnrollmentPlanedescRepository
|
|
/// </summary>
|
|
public class T_EnrollmentPlanedescRepository : BaseRepository<T_EnrollmentPlanedesc>, IT_EnrollmentPlanedescRepository
|
|
{
|
|
public T_EnrollmentPlanedescRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |