DepartmentRepository.cs 405 B

12345678910111213141516
  1. using OASystem.Domain;
  2. using OASystem.Domain.Dtos.System;
  3. using OASystem.Domain.Entities.System;
  4. using OASystem.Domain.ViewModels.System;
  5. namespace OASystem.Infrastructure.Repositories.System
  6. {
  7. public class DepartmentRepository : BaseRepository<Sys_Department, DepartmentDto>
  8. {
  9. public DepartmentRepository(SqlSugarClient sqlSugar) : base(sqlSugar)
  10. {
  11. }
  12. }
  13. }