Files
DMS/DMS.Infrastructure/Repositories/DeviceRepository.cs

22 lines
460 B
C#
Raw Normal View History

2025-07-03 13:53:29 +08:00
using System.Diagnostics;
using AutoMapper;
using DMS.Infrastructure.Entities;
using DMS.Core.Enums;
2025-07-19 09:25:01 +08:00
using DMS.Core.Helper;
using DMS.Core.Models;
using DMS.Infrastructure.Data;
using SqlSugar;
2025-07-19 11:11:01 +08:00
using DMS.Infrastructure.Interfaces;
2025-06-10 22:13:06 +08:00
namespace DMS.Infrastructure.Repositories;
2025-06-10 22:13:06 +08:00
2025-07-19 19:55:42 +08:00
public class DeviceRepository : BaseRepository<DbDevice>,IDeviceRepository
2025-06-10 22:13:06 +08:00
{
2025-07-02 22:07:16 +08:00
2025-07-19 22:29:50 +08:00
public DeviceRepository(SqlSugarDbContext dbContext)
: base(dbContext)
{
2025-06-10 22:13:06 +08:00
}
2025-06-10 22:13:06 +08:00
}