public IdentificationViewModel(Services.IIdentificationService identificationService)
        {
            _identificationService = identificationService;

            if (_identificationService == null) {
                ID = "unknown";
            } else {
                ID = _identificationService.GetDeviceId();
            }
        }
        public IdentificationViewModel(Services.IIdentificationService identificationService)
        {
            _identificationService = identificationService;

            if (_identificationService == null)
            {
                ID = "unknown";
            }
            else
            {
                ID = _identificationService.GetDeviceId();
            }
        }