63 lines
1.8 KiB
C#
63 lines
1.8 KiB
C#
using AutoMapper;
|
||
using DMS.Application.Interfaces;
|
||
using DMS.Application.Interfaces.Database;
|
||
using DMS.Core.Interfaces;
|
||
using DMS.Core.Models;
|
||
|
||
namespace DMS.Application.Services.Database;
|
||
|
||
/// <summary>
|
||
/// IMqttAliasAppService 的实现,负责管理变量与MQTT服务器的别名关联。
|
||
/// </summary>
|
||
public class MqttAliasAppService : IMqttAliasAppService
|
||
{
|
||
private readonly IRepositoryManager _repoManager;
|
||
private readonly IAppDataService _appDataService;
|
||
private readonly IMapper _mapper;
|
||
|
||
/// <summary>
|
||
/// 构造函数。
|
||
/// </summary>
|
||
public MqttAliasAppService(IRepositoryManager repoManager,IAppDataService appStorageService, IMapper mapper)
|
||
{
|
||
_repoManager = repoManager;
|
||
_appDataService = appStorageService;
|
||
_mapper = mapper;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 异步为变量分配或更新一个MQTT别名。
|
||
/// </summary>
|
||
public async Task<MqttAlias> AssignAliasAsync(MqttAlias mqttAlias)
|
||
{
|
||
return await _repoManager.MqttAliases.AddAsync(mqttAlias);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 异步更新一个已存在的MQTT别名。
|
||
/// </summary>
|
||
public async Task<int> UpdateAliasAsync(MqttAlias mqttAlias)
|
||
{
|
||
return await _repoManager.MqttAliases.UpdateAsync(mqttAlias);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 异步移除一个MQTT别名关联。
|
||
/// </summary>
|
||
public async Task<int> RemoveAliasAsync(int aliasId)
|
||
{
|
||
var alias = await _repoManager.MqttAliases.GetByIdAsync(aliasId);
|
||
if (alias == null)
|
||
{
|
||
return 0;
|
||
}
|
||
return await _repoManager.MqttAliases.DeleteAsync(alias);
|
||
}
|
||
|
||
public async Task<List<MqttAlias>> GetAllAsync()
|
||
{
|
||
var mqttAliases = await _repoManager.MqttAliases.GetAllAsync();
|
||
|
||
return mqttAliases;
|
||
}
|
||
} |