Sys_DepartmentRepository.cs 495 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 Sys_DepartmentRepository : BaseRepository<Sys_Department, Sys_DepartmentView>
  12. {
  13. public Sys_DepartmentRepository(SqlSugarClient sqlSugar) : base(sqlSugar)
  14. {
  15. }
  16. }
  17. }