12345678910111213141516171819 |
- using OASystem.Domain.Dtos;
- using OASystem.Domain.Entities.System;
- using OASystem.Domain.ViewModels.System;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Infrastructure.Repositories.System
- {
- public class DepartmentRepository : BaseRepository<Sys_Department, DepartmentIView>
- {
- public DepartmentRepository(SqlSugarClient sqlSugar) : base(sqlSugar)
- {
- }
- }
- }
|