using DMS.Core.Interfaces.Repositories;
using DMS.Infrastructure.Data;
using DMS.Infrastructure.Entities;
namespace DMS.Infrastructure.Repositories;
///
/// 变量与MQTT服务器别名关联的数据仓库。
///
public class VariableMqttAliasRepository : BaseRepository, IVariableMqttAliasRepository
{
public VariableMqttAliasRepository(SqlSugarDbContext dbContext)
: base(dbContext)
{
}
public async Task GetByIdAsync(int id) => throw new NotImplementedException();
public async Task> GetAllAsync() => throw new NotImplementedException();
public async Task AddAsync(VariableMqttAlias entity) => throw new NotImplementedException();
public async Task UpdateAsync(VariableMqttAlias entity) => throw new NotImplementedException();
public async Task DeleteAsync(VariableMqttAlias entity) => throw new NotImplementedException();
}