public async Task DeleteDeviceAsync(string deviceId)
        {
            await _DeviceTwinRepo.DeleteDeviceAsync(deviceId);

            //Empty cache
            _Cache.RemoveDeviceEntity(deviceId);
        }