17 lines
478 B
C#
17 lines
478 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>
|
|
/// D_MajorInformationRepository
|
|
/// </summary>
|
|
public class D_MajorInformationRepository : BaseRepository<D_MajorInformation>, ID_MajorInformationRepository
|
|
{
|
|
public D_MajorInformationRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |