17 lines
458 B
C#
17 lines
458 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_GraduateFlowRepository
|
|
/// </summary>
|
|
public class D_GraduateFlowRepository : BaseRepository<D_GraduateFlow>, ID_GraduateFlowRepository
|
|
{
|
|
public D_GraduateFlowRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |