public override void OnPause()
 {
     if (Profile != null)
     {
         profileSettingService.SaveProfile(Profile);
     }
     base.OnPause();
 }
 private void SaveDataBeforeYouLive()
 {
     Profile.DriverLicense = DriverLicense;
     profileSettingService.SaveProfile(Profile);
 }