public async Task Handle()
        {
            await _notice.NotifyAsync(async() =>
            {
                var dataEvent = new DataSensorsAddedIntegrationEvent <DataSensorsAddedContent>
                                    (new DataSensorsAddedContent("Data added."), "SmartHome.Data.Api", null);

                await _dataHandler.Handle(dataEvent);
            });
        }