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