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