Exemple #1
0
        public async Task ChangePin()
        {
            var userInfo = await service.GetUserInfoAsync();

            userInfo.Pin = "1234";
            await service.SetUserInfoAsync(userInfo);
        }