DepartmentRepository.cs 484 B

12345678910111213141516171819
  1. using OASystem.Domain.Dtos;
  2. using OASystem.Domain.Entities.System;
  3. using OASystem.Domain.ViewModels.System;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace OASystem.Infrastructure.Repositories.System
  10. {
  11. public class DepartmentRepository : BaseRepository<Sys_Department, DepartmentIView>
  12. {
  13. public DepartmentRepository(SqlSugarClient sqlSugar) : base(sqlSugar)
  14. {
  15. }
  16. }
  17. }