private void LoadData()
 {
     CoffeeDataService coffeeDataService = new CoffeeDataService();
     Coffees = coffeeDataService.GetAllCoffees().ToObservableCollection();
     CoffeeListView.ItemsSource = Coffees; 
 }