- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.Entities;
- namespace EMIS.DataLogic.Repositories
- {
- public class StudentChangeRepository : Repository<HB_StudentChange>
- {
- public StudentChangeRepository(UnitOfWork unitOfWork)
- : base(unitOfWork)
- { }
- }
- }
|