Esempio n. 1
0
        private async Task LogoutUserAsync()
        {
            var cis = new CartItemService();

            cis.RemoveItemsFromCart();
            Preferences.Remove("Username");
            await Application.Current.MainPage.Navigation.PushModalAsync(new LoginView());
        }
        private void RemoveItemsFromCart()
        {
            var cis = new CartItemService();

            cis.RemoveItemsFromCart();
        }