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