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 { public DepartmentRepository(SqlSugarClient sqlSugar) : base(sqlSugar) { } } }