void SaveProfile()
        {
            SL.Profile.UserName              = SocialLadder.iOS.Helpers.StringWithEmojiConverter.ConvertEmojiToServer(DisplayNameText.Text);
            SL.Profile.City                  = CityText.Text;
            SL.Profile.EmailAddress          = EmailText.Text;
            SL.Profile.isNotificationEnabled = swNotifications.On;

            var newProfile = new ProfileUpdateModel()
            {
                UserName              = StringWithEmojiConverter.ConvertEmojiToServer(DisplayNameText.Text),
                EmailAddress          = EmailText.Text,
                isNotificationEnabled = swNotifications.On,
                isPhoneBookEnabled    = false,
                isGeoEnabled          = SL.Profile.isGeoEnabled,
                LocationLat           = SL.Profile.LocationLat,
                LocationLon           = SL.Profile.LocationLon,
                City       = CityText.Text,
                AppVersion = SL.Profile.AppVersion
            };

            SL.Manager.UpdateProfileAsync(newProfile);
        }