IExamManageRepository.cs 456 B

123456789101112131415161718
  1. using Hotline.Repository.SqlSugar.Interface;
  2. using System.ComponentModel;
  3. using Hotline.Exams.ExamManages;
  4. using XF.Domain.Repository;
  5. namespace Hotline.Repository.SqlSugar.Exam.Interfaces.ExamManages
  6. {
  7. /// <summary>
  8. /// 考试管理仓储接口
  9. /// </summary>
  10. [Description("考试管理仓储接口")]
  11. public interface IExamManageRepository:IRepository<ExamManage>,IExamRepository<ExamManage,HotlineDbContext>
  12. {
  13. }
  14. }