using DMS.Core.Interfaces;
using DMS.Core.Interfaces.Repositories;
using DMS.Core.Models;
using DMS.Infrastructure.Data;
using DMS.Infrastructure.Entities;
namespace DMS.Infrastructure.Repositories;
///
/// 用户仓储类,用于操作DbUser实体
///
public class UserRepository : BaseRepository, IUserRepository
{
public UserRepository(SqlSugarDbContext dbContext)
: base(dbContext)
{
}
public async Task GetByIdAsync(int id) => throw new NotImplementedException();
public async Task> GetAllAsync() => throw new NotImplementedException();
public async Task AddAsync(User entity) => throw new NotImplementedException();
public async Task UpdateAsync(User entity) => throw new NotImplementedException();
public async Task DeleteAsync(User entity) => throw new NotImplementedException();
}