private void Remove_Stokvel_Click(object sender, RoutedEventArgs e)
        {
            string msg = "Are you sure you would like to remove this stokvel? Your business administrator will be notified";

            if (MessageBox.Show(msg, "Remove Stokvel", MessageBoxButton.YesNo, MessageBoxImage.Warning) == MessageBoxResult.Yes)
            {
                Remove_Stokvel rm = new Remove_Stokvel();
                rm.Show();
            }
        }
 private void Remove_Stokvel_Click(object sender, RoutedEventArgs e)
 {
     string msg = "Are you sure you would like to remove this stokvel? Your business administrator will be notified";
     if (MessageBox.Show(msg, "Remove Stokvel", MessageBoxButton.YesNo, MessageBoxImage.Warning) == MessageBoxResult.Yes)
     {
         Remove_Stokvel rm = new Remove_Stokvel();
         rm.Show();
     }
 }