2020-12-03 18:52:25 +01:00
|
|
|
|
using Birdmap.BLL.Interfaces;
|
|
|
|
|
|
|
|
|
|
namespace Birdmap.BLL.Services.CommunicationServices.Mqtt
|
2020-11-09 18:12:07 +01:00
|
|
|
|
{
|
|
|
|
|
public class MqttClientServiceProvider
|
|
|
|
|
{
|
|
|
|
|
public IMqttClientService MqttClientService { get; }
|
|
|
|
|
|
|
|
|
|
public MqttClientServiceProvider(IMqttClientService mqttClientService)
|
|
|
|
|
{
|
|
|
|
|
MqttClientService = mqttClientService;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|